blob: f89ca1b748fb4efd543e7b024171a32290465d1c [file] [log] [blame]
Joel Galensonc6dafc62021-11-29 14:03:26 -08001// This file is generated by cargo2android.py --config cargo2android.json.
Jakub Koturc22b6f22020-12-22 09:58:47 +01002// Do not modify this file as changes will be overridden on upgrade.
3
Bob Badour0141ca02021-03-17 12:58:39 -07004package {
5 default_applicable_licenses: [
6 "external_rust_crates_crossbeam-deque_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_crossbeam-deque_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
Jeff Vander Stoepc0ca7222021-10-18 12:47:30 +020042rust_defaults {
43 name: "crossbeam-deque_test_defaults",
44 crate_name: "crossbeam_deque",
Jeff Vander Stoepc0ca7222021-10-18 12:47:30 +020045 cargo_env_compat: true,
46 cargo_pkg_version: "0.8.1",
47 test_suites: ["general-tests"],
48 auto_gen_config: true,
49 edition: "2018",
50 features: [
51 "crossbeam-epoch",
52 "crossbeam-utils",
53 "default",
54 "std",
55 ],
56 rustlibs: [
57 "libcfg_if",
58 "libcrossbeam_deque",
59 "libcrossbeam_epoch",
60 "libcrossbeam_utils",
61 "librand",
62 ],
63}
64
Joel Galensonc6dafc62021-11-29 14:03:26 -080065rust_test {
66 name: "crossbeam-deque_test_tests_fifo",
67 defaults: ["crossbeam-deque_test_defaults"],
68 host_supported: true,
Jeff Vander Stoepc0ca7222021-10-18 12:47:30 +020069 srcs: ["tests/fifo.rs"],
70 test_options: {
71 unit_test: true,
72 },
73}
74
75rust_test {
Joel Galensonc6dafc62021-11-29 14:03:26 -080076 name: "crossbeam-deque_test_tests_injector",
77 defaults: ["crossbeam-deque_test_defaults"],
78 host_supported: true,
Jeff Vander Stoepc0ca7222021-10-18 12:47:30 +020079 srcs: ["tests/injector.rs"],
80 test_options: {
81 unit_test: true,
82 },
83}
84
85rust_test {
Joel Galensonc6dafc62021-11-29 14:03:26 -080086 name: "crossbeam-deque_test_tests_lifo",
87 defaults: ["crossbeam-deque_test_defaults"],
88 host_supported: true,
Jeff Vander Stoepc0ca7222021-10-18 12:47:30 +020089 srcs: ["tests/lifo.rs"],
90 test_options: {
91 unit_test: true,
92 },
93}
94
95rust_test {
Joel Galensonc6dafc62021-11-29 14:03:26 -080096 name: "crossbeam-deque_test_tests_steal",
97 defaults: ["crossbeam-deque_test_defaults"],
98 host_supported: true,
Jeff Vander Stoepc0ca7222021-10-18 12:47:30 +020099 srcs: ["tests/steal.rs"],
100 test_options: {
101 unit_test: true,
102 },
103}
104
Jakub Koturc22b6f22020-12-22 09:58:47 +0100105rust_library {
106 name: "libcrossbeam_deque",
107 host_supported: true,
108 crate_name: "crossbeam_deque",
Jeff Vander Stoepc0ca7222021-10-18 12:47:30 +0200109 cargo_env_compat: true,
110 cargo_pkg_version: "0.8.1",
Jakub Koturc22b6f22020-12-22 09:58:47 +0100111 srcs: ["src/lib.rs"],
112 edition: "2018",
113 features: [
114 "crossbeam-epoch",
115 "crossbeam-utils",
116 "default",
117 "std",
118 ],
119 rustlibs: [
120 "libcfg_if",
121 "libcrossbeam_epoch",
122 "libcrossbeam_utils",
123 ],
124}