blob: cc02488a31962be1951547821e7b9e4f1dbf25ff [file] [log] [blame]
Jakub Kotur99a91172021-02-05 15:20:00 +01001// This file is generated by cargo2android.py --run --device --dependencies --tests.
2// Do not modify this file as changes will be overridden on upgrade.
Chih-Hung Hsieh048fc042020-04-16 10:44:22 -07003
Bob Badourd0d12682021-03-17 13:03:41 -07004package {
5 default_applicable_licenses: ["external_rust_crates_regex-syntax_license"],
6}
7
8// Added automatically by a large-scale-change that took the approach of
9// 'apply every license found to every target'. While this makes sure we respect
10// every license restriction, it may not be entirely correct.
11//
12// e.g. GPL in an MIT project might only apply to the contrib/ directory.
13//
14// Please consider splitting the single license below into multiple licenses,
15// taking care not to lose any license_kind information, and overriding the
16// default license using the 'licenses: [...]' property on targets as needed.
17//
18// For unused files, consider creating a 'fileGroup' with "//visibility:private"
19// to attach the license to, and including a comment whether the files may be
20// used in the current project.
21//
22// large-scale-change included anything that looked like it might be a license
23// text as a license_text. e.g. LICENSE, NOTICE, COPYING etc.
24//
25// Please consider removing redundant or irrelevant files from 'license_text:'.
26// See: http://go/android-license-faq
27license {
28 name: "external_rust_crates_regex-syntax_license",
29 visibility: [":__subpackages__"],
30 license_kinds: [
31 "SPDX-license-identifier-Apache-2.0",
32 "SPDX-license-identifier-MIT",
33 "SPDX-license-identifier-Unicode-DFS",
34 ],
35 license_text: [
36 "LICENSE-APACHE",
37 "LICENSE-MIT",
38 ],
39}
40
Jakub Kotur99a91172021-02-05 15:20:00 +010041rust_library {
Chih-Hung Hsieh048fc042020-04-16 10:44:22 -070042 name: "libregex_syntax",
Jakub Kotur99a91172021-02-05 15:20:00 +010043 host_supported: true,
Chih-Hung Hsieh048fc042020-04-16 10:44:22 -070044 crate_name: "regex_syntax",
45 srcs: ["src/lib.rs"],
46 edition: "2015",
47 features: [
48 "default",
49 "unicode",
50 "unicode-age",
51 "unicode-bool",
52 "unicode-case",
53 "unicode-gencat",
54 "unicode-perl",
55 "unicode-script",
56 "unicode-segment",
57 ],
58}
Chih-Hung Hsieh45fef2c2020-07-16 16:27:50 -070059
Jakub Kotur99a91172021-02-05 15:20:00 +010060rust_defaults {
61 name: "regex-syntax_defaults",
62 crate_name: "regex_syntax",
63 srcs: ["src/lib.rs"],
64 test_suites: ["general-tests"],
65 auto_gen_config: true,
66 edition: "2015",
67 features: [
68 "default",
69 "unicode",
70 "unicode-age",
71 "unicode-bool",
72 "unicode-case",
73 "unicode-gencat",
74 "unicode-perl",
75 "unicode-script",
76 "unicode-segment",
77 ],
78}
79
Chih-Hung Hsieh45fef2c2020-07-16 16:27:50 -070080rust_test_host {
81 name: "regex-syntax_host_test_src_lib",
Jakub Kotur99a91172021-02-05 15:20:00 +010082 defaults: ["regex-syntax_defaults"],
Haibo Huang2ec691d2021-01-08 17:06:08 -080083 test_options: {
84 unit_test: true,
85 },
Jakub Kotur99a91172021-02-05 15:20:00 +010086}
87
88rust_test {
89 name: "regex-syntax_device_test_src_lib",
90 defaults: ["regex-syntax_defaults"],
Chih-Hung Hsieh45fef2c2020-07-16 16:27:50 -070091}