• 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
15package {
16    default_applicable_licenses: ["Android-Apache-2.0"],
17}
18
19cc_defaults {
20    name: "derive_sdk-defaults",
21    min_sdk_version: "30",
22    shared_libs: ["liblog"],
23    // static c++/libbase for smaller size
24    stl: "c++_static",
25    static_libs: [
26        "libbase",
27        "libmodules-utils-build",
28        "libprotobuf-cpp-lite",
29        "libsdk_proto",
30    ],
31}
32
33cc_library {
34    name: "libderive_sdk",
35    srcs: ["derive_sdk.cpp"],
36    defaults: ["derive_sdk-defaults"],
37    apex_available: ["com.android.sdkext"],
38}
39
40cc_defaults {
41    name: "derive_sdk_binary-defaults",
42    defaults: ["derive_sdk-defaults"],
43    srcs: ["main.cpp"],
44    static_libs: ["libderive_sdk"],
45
46}
47
48cc_binary {
49    name: "derive_sdk",
50    defaults: ["derive_sdk_binary-defaults"],
51    apex_available: ["com.android.sdkext"],
52}
53
54// Work around testing using a 64-bit test suite on 32-bit test device by
55// using a prefer32 version of derive_sdk in testing.
56cc_binary {
57    name: "derive_sdk_prefer32",
58    defaults: ["derive_sdk_binary-defaults"],
59    compile_multilib: "prefer32",
60    stem: "derive_sdk",
61    apex_available: ["test_com.android.sdkext"],
62    installable: false,
63}
64
65cc_test {
66    name: "derive_sdk_test",
67    defaults: ["derive_sdk-defaults"],
68    srcs: ["derive_sdk_test.cpp"],
69    require_root: true,
70    static_libs: ["libderive_sdk"],
71    test_suites: ["device-tests"],
72}
73
74prebuilt_etc {
75    name: "derive_sdk.rc",
76    src: "derive_sdk.rc",
77    installable: false,
78}
79