680e03847d
Bug: 113683301 Tests failures that we are trying to fix. https://sponge.corp.google.com/invocations?searchFor=target%3Aandroid.platform.systemui.tests.jank%20label%3Ab%2Fgit_master When the build rule is android_library, AndroidManifest.xml is pulled into the the final apk that is being built. Hence, the platform jank and platform test AndroidManifest.xml is extended with the one we have for Launcher3. This causes the tests to fail due to existence of disambiguation screen. We do not want this behavior. Change-Id: I1a551abf37bb75b4efa8a5e5324ab1b4d8a3eb13
30 lines
1.0 KiB
Plaintext
30 lines
1.0 KiB
Plaintext
// Copyright (C) 2018 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.
|
|
|
|
java_library {
|
|
name: "launcher-aosp-tapl",
|
|
static_libs: [
|
|
"androidx.annotation_annotation",
|
|
"androidx-test",
|
|
"androidx.test.uiautomator_uiautomator",
|
|
"SystemUISharedLib",
|
|
],
|
|
srcs: [
|
|
"tests/tapl/**/*.java",
|
|
"quickstep/src/com/android/quickstep/SwipeUpSetting.java",
|
|
"src/com/android/launcher3/TestProtocol.java",
|
|
],
|
|
platform_apis: true,
|
|
}
|