blob: 741722f38d97c7916d5a3e2195636f11866ddb0a [file] [log] [blame]
Colin Cross6e95dd52016-09-12 15:37:10 -07001//
2// Copyright (C) 2016 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
Andreas Gampe3157fc22017-08-23 09:43:46 -070017// TODO: this header library depends on libart. Find a way to express that.
Bob Badour9150de62021-02-26 03:22:24 -080018package {
19 // See: http://go/android-license-faq
20 // A large-scale-change added 'default_applicable_licenses' to import
21 // all of the 'license_kinds' from "art_license"
22 // to get the below license kinds:
23 // SPDX-license-identifier-Apache-2.0
24 default_applicable_licenses: ["art_license"],
25}
26
Andreas Gampe3157fc22017-08-23 09:43:46 -070027cc_library_headers {
28 name: "art_cmdlineparser_headers",
29 host_supported: true,
30 export_include_dirs: ["."],
Jiyong Park71f661c2020-04-28 18:20:43 +090031
32 apex_available: [
33 "com.android.art.debug",
Martin Stjernholm3e9abfc2020-10-09 22:17:51 +010034 "com.android.art",
Jiyong Park71f661c2020-04-28 18:20:43 +090035 ],
Nicolas Geoffrayec388c02021-03-03 22:09:06 +000036 min_sdk_version: "S",
Andreas Gampe3157fc22017-08-23 09:43:46 -070037}
38
Colin Cross6e95dd52016-09-12 15:37:10 -070039art_cc_test {
40 name: "art_cmdline_tests",
41 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -070042 "art_gtest_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -070043 ],
44 srcs: ["cmdline_parser_test.cc"],
45}