6eea6fb259
This change switches atrace to use a table-driven approach to enabling and disabling options. It unifies how framework and kernel tracing are enabled, and causes userland tracing options to be picked up by currently running processes. Change-Id: Iba2a3012ca0a67c4defdd076bce597db26e9f539
21 lines
334 B
Makefile
21 lines
334 B
Makefile
# Copyright 2012 The Android Open Source Project
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= atrace.cpp
|
|
|
|
LOCAL_C_INCLUDES += external/zlib
|
|
|
|
LOCAL_MODULE:= atrace
|
|
|
|
LOCAL_MODULE_TAGS:= optional
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libbinder \
|
|
libcutils \
|
|
libutils \
|
|
libz \
|
|
|
|
include $(BUILD_EXECUTABLE)
|