blob: d737475e738fa0992206e800525da265b5e6d5e2 [file] [log] [blame]
Joel Galenson26ca9852021-04-28 08:02:55 -07001// This file is generated by cargo2android.py --config cargo2android.json.
2// Do not modify this file as changes will be overridden on upgrade.
Joel Galenson4993e632020-10-23 08:06:45 -07003
Bob Badour3073e722021-02-03 18:56:18 -08004package {
5 default_applicable_licenses: ["external_rust_crates_num_cpus_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// http://go/android-license-faq
27license {
28 name: "external_rust_crates_num_cpus_license",
29 visibility: [":__subpackages__"],
30 license_kinds: [
31 "SPDX-license-identifier-Apache-2.0",
32 "SPDX-license-identifier-MIT",
33 ],
34 license_text: [
35 "LICENSE-APACHE",
36 "LICENSE-MIT",
37 ],
38}
39
Joel Galenson4993e632020-10-23 08:06:45 -070040rust_library {
41 name: "libnum_cpus",
42 host_supported: true,
43 crate_name: "num_cpus",
Jeff Vander Stoepf538b4e2021-10-19 11:45:24 +020044 cargo_env_compat: true,
David LeGare1c542932022-03-02 16:21:07 +000045 cargo_pkg_version: "1.13.1",
Joel Galenson4993e632020-10-23 08:06:45 -070046 srcs: ["src/lib.rs"],
47 edition: "2015",
48 rustlibs: [
49 "liblibc",
50 ],
Jiyong Park59144aa2020-12-14 16:08:40 +090051 apex_available: [
52 "//apex_available:platform",
Roopa Sattiraju08519d72021-12-21 15:32:02 -080053 "com.android.bluetooth",
Jiyong Park44ba2862022-01-14 00:39:39 +090054 "com.android.compos",
Luke Huangfb8d5392021-05-12 15:37:11 +080055 "com.android.resolv",
Joel Galensonee82cca2021-11-19 15:10:00 -080056 "com.android.uwb",
Jiyong Park59144aa2020-12-14 16:08:40 +090057 "com.android.virt",
58 ],
Matthew Maurer284dc2e2022-01-13 22:35:33 +000059 vendor_available: true,
Luke Huangfb8d5392021-05-12 15:37:11 +080060 min_sdk_version: "29",
Joel Galenson4993e632020-10-23 08:06:45 -070061}
62
Joel Galensonaa35ab52021-11-29 14:04:28 -080063rust_test {
64 name: "num_cpus_test_src_lib",
Jeff Vander Stoepf538b4e2021-10-19 11:45:24 +020065 crate_name: "num_cpus",
Jeff Vander Stoepf538b4e2021-10-19 11:45:24 +020066 cargo_env_compat: true,
David LeGare1c542932022-03-02 16:21:07 +000067 cargo_pkg_version: "1.13.1",
Joel Galensonaa35ab52021-11-29 14:04:28 -080068 srcs: ["src/lib.rs"],
Jeff Vander Stoepf538b4e2021-10-19 11:45:24 +020069 test_suites: ["general-tests"],
70 auto_gen_config: true,
Joel Galensonca3b9412022-01-10 10:18:07 -080071 test_options: {
72 unit_test: false,
73 },
Jeff Vander Stoepf538b4e2021-10-19 11:45:24 +020074 edition: "2015",
75 rustlibs: [
76 "liblibc",
77 ],
78}