1// This file is generated by cargo2android.py --device --run --dependencies --test.
2// Do not modify this file as changes will be overridden on upgrade.
3
4package {
5    default_applicable_licenses: [
6        "external_rust_crates_linked-hash-map_license",
7    ],
8}
9
10// Added automatically by a large-scale-change that took the approach of
11// 'apply every license found to every target'. While this makes sure we respect
12// every license restriction, it may not be entirely correct.
13//
14// e.g. GPL in an MIT project might only apply to the contrib/ directory.
15//
16// Please consider splitting the single license below into multiple licenses,
17// taking care not to lose any license_kind information, and overriding the
18// default license using the 'licenses: [...]' property on targets as needed.
19//
20// For unused files, consider creating a 'fileGroup' with "//visibility:private"
21// to attach the license to, and including a comment whether the files may be
22// used in the current project.
23//
24// large-scale-change included anything that looked like it might be a license
25// text as a license_text. e.g. LICENSE, NOTICE, COPYING etc.
26//
27// Please consider removing redundant or irrelevant files from 'license_text:'.
28// See: http://go/android-license-faq
29license {
30    name: "external_rust_crates_linked-hash-map_license",
31    visibility: [":__subpackages__"],
32    license_kinds: [
33        "SPDX-license-identifier-Apache-2.0",
34        "SPDX-license-identifier-MIT",
35    ],
36    license_text: [
37        "LICENSE-APACHE",
38        "LICENSE-MIT",
39    ],
40}
41
42rust_library {
43    name: "liblinked_hash_map",
44    host_supported: true,
45    crate_name: "linked_hash_map",
46    srcs: ["src/lib.rs"],
47    edition: "2015",
48}
49
50rust_defaults {
51    name: "linked-hash-map_defaults",
52    crate_name: "linked_hash_map",
53    srcs: ["src/lib.rs"],
54    test_suites: ["general-tests"],
55    auto_gen_config: true,
56    edition: "2015",
57}
58
59rust_test_host {
60    name: "linked-hash-map_host_test_src_lib",
61    defaults: ["linked-hash-map_defaults"],
62    test_options: {
63        unit_test: true,
64    },
65}
66
67rust_test {
68    name: "linked-hash-map_device_test_src_lib",
69    defaults: ["linked-hash-map_defaults"],
70}
71
72rust_defaults {
73    name: "linked-hash-map_defaults_linked_hash_map",
74    crate_name: "linked_hash_map",
75    test_suites: ["general-tests"],
76    auto_gen_config: true,
77    edition: "2015",
78    rustlibs: [
79        "liblinked_hash_map",
80    ],
81}
82
83rust_test_host {
84    name: "linked-hash-map_host_test_tests_heapsize",
85    defaults: ["linked-hash-map_defaults_linked_hash_map"],
86    srcs: ["tests/heapsize.rs"],
87    test_options: {
88        unit_test: true,
89    },
90}
91
92rust_test {
93    name: "linked-hash-map_device_test_tests_heapsize",
94    defaults: ["linked-hash-map_defaults_linked_hash_map"],
95    srcs: ["tests/heapsize.rs"],
96}
97
98rust_test_host {
99    name: "linked-hash-map_host_test_tests_serde",
100    defaults: ["linked-hash-map_defaults_linked_hash_map"],
101    srcs: ["tests/serde.rs"],
102    test_options: {
103        unit_test: true,
104    },
105}
106
107rust_test {
108    name: "linked-hash-map_device_test_tests_serde",
109    defaults: ["linked-hash-map_defaults_linked_hash_map"],
110    srcs: ["tests/serde.rs"],
111}
112
113rust_test_host {
114    name: "linked-hash-map_host_test_tests_test",
115    defaults: ["linked-hash-map_defaults_linked_hash_map"],
116    srcs: ["tests/test.rs"],
117    test_options: {
118        unit_test: true,
119    },
120}
121
122rust_test {
123    name: "linked-hash-map_device_test_tests_test",
124    defaults: ["linked-hash-map_defaults_linked_hash_map"],
125    srcs: ["tests/test.rs"],
126}
127