blob: a3c1f5b2f17d0bc28e3f7051a18d9be55f4685d2 [file] [log] [blame]
Jing Ji84121312019-10-17 15:36:57 -07001// Copyright (C) 2019 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15android_test_helper_app {
16 name: "ActivityManagerPerfTestsStubApp1",
17 static_libs: ["ActivityManagerPerfTestsUtils"],
18 srcs: [
19 "src/**/*.java",
20 ],
21 resource_dirs: [
22 "app1/res",
23 "res",
24 ],
25 platform_apis: true,
26 certificate: "platform",
27 aaptflags: [
28 "--rename-manifest-package com.android.stubs.am1",
29 "--auto-add-overlay",
30 ],
31}
32
33android_test_helper_app {
34 name: "ActivityManagerPerfTestsStubApp2",
35 static_libs: ["ActivityManagerPerfTestsUtils"],
36 srcs: [
37 "src/**/*.java",
38 ],
39 resource_dirs: [
40 "app2/res",
41 "res",
42 ],
43 platform_apis: true,
44 certificate: "platform",
45 aaptflags: [
46 "--rename-manifest-package com.android.stubs.am2",
47 "--auto-add-overlay",
48 ],
49}
50
51android_test_helper_app {
52 name: "ActivityManagerPerfTestsStubApp3",
53 static_libs: ["ActivityManagerPerfTestsUtils"],
54 srcs: [
55 "src/**/*.java",
56 ],
57 resource_dirs: [
58 "app3/res",
59 "res",
60 ],
61 platform_apis: true,
62 certificate: "platform",
63 aaptflags: [
64 "--rename-manifest-package com.android.stubs.am3",
65 "--auto-add-overlay",
66 ],
67}
68