blob: 8f575ca98691f37e94825f97102dd71f16aa9b29 [file] [log] [blame]
Bob Badour4e060082021-02-16 18:59:28 -08001package {
2 default_applicable_licenses: ["system_extras_crypto-perf_license"],
3}
4
5// Added automatically by a large-scale-change
6// See: http://go/android-license-faq
7license {
8 name: "system_extras_crypto-perf_license",
9 visibility: [":__subpackages__"],
10 license_kinds: [
11 "SPDX-license-identifier-Apache-2.0",
12 ],
13 license_text: [
14 "NOTICE",
15 ],
16}
17
Dan Willemsen2a904af2018-05-04 18:35:50 -070018cc_binary {
19 name: "crypto",
20
21 cflags: [
22 "-O0",
23 "-march=armv8-a+crypto",
24 "-Wall",
25 "-Werror",
26 ],
27 srcs: ["crypto.cpp"],
28
29 enabled: false,
30 arch: {
31 arm64: {
32 enabled: true,
33 },
34 },
35}