• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// 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
15// TODO: consider removing _prebuilt suffix from module names and make use of
16// 'prefer: true'
17
18prebuilt_apex {
19  name: "com.android.apex.cts.shim.v1_prebuilt",
20  src: "com.android.apex.cts.shim.v1.apex",
21  filename: "com.android.apex.cts.shim.apex",
22  prefer: true,
23  installable: true,
24}
25
26prebuilt_apex {
27  name: "com.android.apex.cts.shim.v2_prebuilt",
28  src: "com.android.apex.cts.shim.v2.apex",
29  filename: "com.android.apex.cts.shim.v2.apex",
30  installable: false,
31}
32
33prebuilt_apex {
34  name: "com.android.apex.cts.shim.v2_wrong_sha_prebuilt",
35  src: "com.android.apex.cts.shim.v2_wrong_sha.apex",
36  filename: "com.android.apex.cts.shim.v2_wrong_sha.apex",
37  installable: false,
38}
39
40prebuilt_apex {
41  name: "com.android.apex.cts.shim.v2_additional_file_prebuilt",
42  src: "com.android.apex.cts.shim.v2_additional_file.apex",
43  filename: "com.android.apex.cts.shim.v2_additional_file.apex",
44  installable: false,
45}
46
47prebuilt_apex {
48  name: "com.android.apex.cts.shim.v2_additional_folder_prebuilt",
49  src: "com.android.apex.cts.shim.v2_additional_folder.apex",
50  filename: "com.android.apex.cts.shim.v2_additional_folder.apex",
51  installable: false,
52}
53
54prebuilt_apex {
55  name: "com.android.apex.cts.shim.v2_with_pre_install_hook_prebuilt",
56  src: "com.android.apex.cts.shim.v2_with_pre_install_hook.apex",
57  filename: "com.android.apex.cts.shim.v2_with_pre_install_hook.apex",
58  installable: false,
59}
60
61prebuilt_apex {
62  name: "com.android.apex.cts.shim.v2_with_post_install_hook_prebuilt",
63  src: "com.android.apex.cts.shim.v2_with_post_install_hook.apex",
64  filename: "com.android.apex.cts.shim.v2_with_post_install_hook.apex",
65  installable: false,
66}
67