blob: 08d8964f855a1dfcf7ca9398aceccc5b579e8dc8 [file] [log] [blame]
Andreas Gampe85ac3602018-08-03 03:42:08 -07001//
2// Copyright (C) 2018 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17art_cc_defaults {
18 name: "art_verifier-defaults",
Andreas Gampeec5ed062018-01-26 16:20:02 -080019 defaults: [
20 "art_defaults",
Andreas Gampeec5ed062018-01-26 16:20:02 -080021 ],
Andreas Gampe85ac3602018-08-03 03:42:08 -070022 host_supported: true,
23 srcs: [
24 "art_verifier.cc",
25 ],
26 header_libs: [
27 "art_cmdlineparser_headers",
28 ],
Andreas Gampeec5ed062018-01-26 16:20:02 -080029 static_libs: [
30 "libsigchain_dummy",
Andreas Gampe85ac3602018-08-03 03:42:08 -070031 ],
32 target: {
33 android: {
34 static_libs: [
35 "libtombstoned_client_static",
36 ],
dimitry268aa302019-03-19 12:25:03 +010037 shared_libs: [
38 "libdl_android",
39 ],
Andreas Gampe85ac3602018-08-03 03:42:08 -070040 },
Dario Frenidfcbdee2018-08-06 11:41:10 +010041 darwin: {
42 enabled: false,
43 },
Andreas Gampe85ac3602018-08-03 03:42:08 -070044 },
45}
46
47art_cc_binary {
48 name: "art_verifier",
Andreas Gampe63ab3e12019-05-09 13:31:06 -070049 defaults: [
50 "art_verifier-defaults",
51 "libart_static_defaults",
52 ],
53}
54
55art_cc_binary {
56 name: "art_verifierd",
57 defaults: [
58 "art_debug_defaults",
59 "art_verifier-defaults",
60 "libartd_static_defaults",
61 ],
Andreas Gampe85ac3602018-08-03 03:42:08 -070062}