Files
frameworks_base/tests/TaskOrganizerTest/Android.bp
arthurhung dc1d359a55 Add resizing tasks synchronously flicker tests
The test app will launch two tasks on two SurfaceViews and use
TaskOrganizer that implements BLASTSyncEngine to resize two
tasks synchronously.

We could verify it from the layersTrace to ensure the layers of the
two tasks could apply resizing at same transaction.

Bug: 168505972
Test: enable mUseBLASTSync, atest ResizeTasksSyncTest
Change-Id: I815325e37f3ce1e70fb5b51ec32f82a0088c4943
2020-11-11 12:55:17 +08:00

35 lines
1.1 KiB
Plaintext

//
// Copyright (C) 2019 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.
//
android_test {
name: "TaskOrganizerTest",
srcs: ["**/*.java","**/*.kt"],
manifest: "AndroidManifest.xml",
test_config: "AndroidTest.xml",
platform_apis: true,
certificate: "platform",
static_libs: [
"androidx.appcompat_appcompat",
"androidx.test.rules",
"androidx.test.runner",
"androidx.test.ext.junit",
"kotlin-stdlib",
"kotlinx-coroutines-android",
"flickerlib",
"truth-prebuilt",
],
}