Dan Willemsen | be906bb | 2018-05-09 16:26:42 -0700 | [diff] [blame] | 1 | // Copyright 2006 The Android Open Source Project |
| 2 | |
Bob Badour | 4e06008 | 2021-02-16 18:59:28 -0800 | [diff] [blame] | 3 | package { |
| 4 | // See: http://go/android-license-faq |
| 5 | // A large-scale-change added 'default_applicable_licenses' to import |
| 6 | // all of the 'license_kinds' from "system_extras_tests_license" |
| 7 | // to get the below license kinds: |
| 8 | // SPDX-license-identifier-Apache-2.0 |
| 9 | default_applicable_licenses: ["system_extras_tests_license"], |
| 10 | } |
| 11 | |
Dan Willemsen | be906bb | 2018-05-09 16:26:42 -0700 | [diff] [blame] | 12 | cc_binary { |
| 13 | name: "icache", |
| 14 | |
| 15 | srcs: [ |
| 16 | "icache_main.cpp", |
| 17 | "Profiler.cpp", |
| 18 | "icache.S", |
| 19 | ], |
| 20 | |
| 21 | cflags: [ |
| 22 | "-Wall", |
| 23 | "-Werror", |
| 24 | ], |
| 25 | |
| 26 | enabled: false, |
| 27 | arch: { |
| 28 | arm: { |
| 29 | enabled: true, |
| 30 | }, |
| 31 | }, |
| 32 | } |