Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7d142eb0 authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 11672362 from ea812ab8 to 24Q3-release

Change-Id: I3c133bd26d53d4b4880f2bfbfaad4b39383f2e79
parents dbd7d50f ea812ab8
Loading
Loading
Loading
Loading

Android.bp

0 → 100644
+18 −0
Original line number Diff line number Diff line
//
// Copyright (C) 2024 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//

soong_namespace {
}
+10 −0
Original line number Diff line number Diff line
@@ -31,3 +31,13 @@ flag {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "bouncer_area_exclusion"
    namespace : "systemui"
    description : "Exclusion List to calculated a default bouncer region on dream"
    bug : "327003425"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}
+9 −0
Original line number Diff line number Diff line
@@ -258,6 +258,15 @@ public class Interpolators {
        }
    };

    /**
     * Use this interpolator for animating progress values coming from the back callback to get
     * the predictive-back-typical decelerate motion.
     *
     * This interpolator is similar to {@link Interpolators#STANDARD_DECELERATE} but has a slight
     * acceleration phase at the start.
     */
    public static final Interpolator BACK_GESTURE = new PathInterpolator(0.1f, 0.1f, 0f, 1f);

    private static final float FAST_FLING_PX_MS = 10;

    /*
+9 −0
Original line number Diff line number Diff line
@@ -264,6 +264,15 @@ public class InterpolatorsAndroidX {
        }
    };

    /**
     * Use this interpolator for animating progress values coming from the back callback to get
     * the predictive-back-typical decelerate motion.
     *
     * This interpolator is similar to {@link Interpolators#STANDARD_DECELERATE} but has a slight
     * acceleration phase at the start.
     */
    public static final Interpolator BACK_GESTURE = new PathInterpolator(0.1f, 0.1f, 0f, 1f);

    private static final float FAST_FLING_PX_MS = 10;

    /*

compilelib/Android.bp

0 → 100644
+47 −0
Original line number Diff line number Diff line
//
// Copyright (C) 2024 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//

package {
    default_applicable_licenses: ["Android-Apache-2.0"],
    default_visibility: ["//visibility:public"],
}

filegroup {
    name: "ReleaseJavaFiles",
    srcs: [
        "src-release/**/*.java",
    ],
    visibility: ["//visibility:private"],
}

filegroup {
    name: "DebugJavaFiles",
    srcs: [
        "src-debug/**/*.java",
    ],
    visibility: ["//visibility:private"],
}

java_library {
    name: "compilelib",
    srcs: [":ReleaseJavaFiles"],
    product_variables: {
        debuggable: {
            srcs: [":DebugJavaFiles"],
            exclude_srcs: [":ReleaseJavaFiles"],
        },
    },
}
Loading