blob: b46e987972f59e718ddb6df2cfd7447a1003b800 [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.
18cc_library_headers {
19 name: "art_cmdlineparser_headers",
20 host_supported: true,
21 export_include_dirs: ["."],
22}
23
Colin Cross6e95dd52016-09-12 15:37:10 -070024art_cc_test {
25 name: "art_cmdline_tests",
26 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -070027 "art_gtest_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -070028 ],
29 srcs: ["cmdline_parser_test.cc"],
30}