• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright (C) 2020 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: "PackageParserTestApp1",
17    sdk_version: "current",
18    srcs: ["**/*.java"],
19    dex_preopt: {
20        enabled: false,
21    },
22    optimize: {
23        enabled: false,
24    },
25    manifest: "AndroidManifestApp1.xml",
26}
27
28android_test_helper_app {
29    name: "PackageParserTestApp2",
30    sdk_version: "current",
31    srcs: ["**/*.java"],
32    dex_preopt: {
33        enabled: false,
34    },
35    optimize: {
36        enabled: false,
37    },
38    manifest: "AndroidManifestApp2.xml",
39}
40
41android_test_helper_app {
42    name: "PackageParserTestApp3",
43    sdk_version: "current",
44    srcs: ["**/*.java"],
45    dex_preopt: {
46        enabled: false,
47    },
48    optimize: {
49        enabled: false,
50    },
51    resource_dirs: ["res"],
52    manifest: "AndroidManifestApp3.xml",
53}
54