31 lines
549 B
Plaintext
31 lines
549 B
Plaintext
// Copyright 2012 The Android Open Source Project
|
|
|
|
cc_binary {
|
|
name: "atrace",
|
|
srcs: ["atrace.cpp"],
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
],
|
|
|
|
shared_libs: [
|
|
"libbinder",
|
|
"libhidlbase",
|
|
"liblog",
|
|
"libutils",
|
|
"libcutils",
|
|
"libz",
|
|
"libbase",
|
|
"libpdx_default_transport",
|
|
"android.hardware.atrace@1.0",
|
|
],
|
|
|
|
init_rc: ["atrace.rc"],
|
|
|
|
product_variables: {
|
|
debuggable: {
|
|
init_rc: ["atrace_userdebug.rc"],
|
|
},
|
|
},
|
|
}
|