blob: 051dcae9773141edcd19ba454d1f2e55041678f7 [file] [log] [blame]
Luke Huangd816c702021-06-29 19:11:41 +08001// This file is generated by cargo2android.py --config cargo2android.json.
2// Do not modify this file as changes will be overridden on upgrade.
3
Bob Badourc1db1552021-06-29 13:17:16 -07004package {
5 default_applicable_licenses: ["external_rust_crates_base64_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_base64_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
Luke Huangd816c702021-06-29 19:11:41 +080040rust_defaults {
Joel Galensonb47b7c22021-11-29 14:03:07 -080041 name: "base64_test_defaults",
Luke Huangd816c702021-06-29 19:11:41 +080042 crate_name: "base64",
Joel Galensonb47b7c22021-11-29 14:03:07 -080043 cargo_env_compat: true,
44 cargo_pkg_version: "0.13.0",
Luke Huangd816c702021-06-29 19:11:41 +080045 test_suites: ["general-tests"],
46 auto_gen_config: true,
47 edition: "2018",
48 features: [
49 "default",
50 "std",
51 ],
52 rustlibs: [
53 "libbase64_rust",
54 "libcriterion",
55 "librand",
56 "libstructopt",
57 ],
58}
59
Joel Galensonb47b7c22021-11-29 14:03:07 -080060rust_test {
61 name: "base64_test_tests_decode",
62 defaults: ["base64_test_defaults"],
63 host_supported: true,
Luke Huangd816c702021-06-29 19:11:41 +080064 srcs: ["tests/decode.rs"],
65 test_options: {
66 unit_test: true,
67 },
68}
69
70rust_test {
Joel Galensonb47b7c22021-11-29 14:03:07 -080071 name: "base64_test_tests_encode",
72 defaults: ["base64_test_defaults"],
73 host_supported: true,
Luke Huangd816c702021-06-29 19:11:41 +080074 srcs: ["tests/encode.rs"],
75 test_options: {
76 unit_test: true,
77 },
78}
79
Luke Huangba8eb952021-06-29 22:30:19 +080080rust_library {
81 name: "libbase64_rust",
82 stem: "libbase64",
83 host_supported: true,
84 crate_name: "base64",
Joel Galensonb47b7c22021-11-29 14:03:07 -080085 cargo_env_compat: true,
86 cargo_pkg_version: "0.13.0",
Luke Huangba8eb952021-06-29 22:30:19 +080087 srcs: ["src/lib.rs"],
88 edition: "2018",
89 features: [
90 "default",
91 "std",
92 ],
93 apex_available: [
94 "//apex_available:platform",
95 "com.android.resolv",
96 ],
97 min_sdk_version: "29",
98}