1// Copyright 2010 The Android Open Source Project 2 3package { 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 12cc_binary { 13 name: "pftest", 14 15 srcs: ["pftest.c"], 16 17 cflags: [ 18 "-fomit-frame-pointer", 19 "-Wall", 20 "-Werror", 21 ], 22 23 arch: { 24 arm: { 25 instruction_set: "arm", 26 }, 27 }, 28} 29