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", |
| 19 | defaults: ["art_defaults"], |
| 20 | host_supported: true, |
| 21 | srcs: [ |
| 22 | "art_verifier.cc", |
| 23 | ], |
| 24 | header_libs: [ |
| 25 | "art_cmdlineparser_headers", |
| 26 | ], |
| 27 | static_libs: art_static_dependencies + [ |
| 28 | "libart", |
| 29 | "libartbase", |
| 30 | "libdexfile", |
| 31 | "libprofile", |
| 32 | ], |
| 33 | target: { |
| 34 | android: { |
| 35 | static_libs: [ |
| 36 | "libtombstoned_client_static", |
| 37 | ], |
| 38 | }, |
| 39 | }, |
| 40 | } |
| 41 | |
| 42 | art_cc_binary { |
| 43 | name: "art_verifier", |
| 44 | defaults: ["art_verifier-defaults"], |
| 45 | } |