Andreas Gampe | 85ac360 | 2018-08-03 03:42:08 -0700 | [diff] [blame] | 1 | // |
| 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 | |
| 17 | art_cc_defaults { |
| 18 | name: "art_verifier-defaults", |
Andreas Gampe | ec5ed06 | 2018-01-26 16:20:02 -0800 | [diff] [blame] | 19 | defaults: [ |
| 20 | "art_defaults", |
Andreas Gampe | ec5ed06 | 2018-01-26 16:20:02 -0800 | [diff] [blame] | 21 | ], |
Andreas Gampe | 85ac360 | 2018-08-03 03:42:08 -0700 | [diff] [blame] | 22 | host_supported: true, |
| 23 | srcs: [ |
| 24 | "art_verifier.cc", |
| 25 | ], |
| 26 | header_libs: [ |
| 27 | "art_cmdlineparser_headers", |
| 28 | ], |
Andreas Gampe | ec5ed06 | 2018-01-26 16:20:02 -0800 | [diff] [blame] | 29 | static_libs: [ |
| 30 | "libsigchain_dummy", |
Andreas Gampe | 85ac360 | 2018-08-03 03:42:08 -0700 | [diff] [blame] | 31 | ], |
| 32 | target: { |
| 33 | android: { |
| 34 | static_libs: [ |
| 35 | "libtombstoned_client_static", |
| 36 | ], |
dimitry | 268aa30 | 2019-03-19 12:25:03 +0100 | [diff] [blame] | 37 | shared_libs: [ |
| 38 | "libdl_android", |
| 39 | ], |
Andreas Gampe | 85ac360 | 2018-08-03 03:42:08 -0700 | [diff] [blame] | 40 | }, |
Dario Freni | dfcbdee | 2018-08-06 11:41:10 +0100 | [diff] [blame] | 41 | darwin: { |
| 42 | enabled: false, |
| 43 | }, |
Andreas Gampe | 85ac360 | 2018-08-03 03:42:08 -0700 | [diff] [blame] | 44 | }, |
| 45 | } |
| 46 | |
| 47 | art_cc_binary { |
| 48 | name: "art_verifier", |
Andreas Gampe | 63ab3e1 | 2019-05-09 13:31:06 -0700 | [diff] [blame^] | 49 | defaults: [ |
| 50 | "art_verifier-defaults", |
| 51 | "libart_static_defaults", |
| 52 | ], |
| 53 | } |
| 54 | |
| 55 | art_cc_binary { |
| 56 | name: "art_verifierd", |
| 57 | defaults: [ |
| 58 | "art_debug_defaults", |
| 59 | "art_verifier-defaults", |
| 60 | "libartd_static_defaults", |
| 61 | ], |
Andreas Gampe | 85ac360 | 2018-08-03 03:42:08 -0700 | [diff] [blame] | 62 | } |