diff options
author | Nick Kralevich <nnk@google.com> | 2013-05-23 09:54:47 -0700 |
---|---|---|
committer | Nick Kralevich <nnk@google.com> | 2013-05-23 11:04:54 -0700 |
commit | b39e3a8a4fa9b4121a9ceb45cacce843b32b1a65 (patch) | |
tree | 189a3ec225b4fc742ad5eb2d9c1920fa71777b0d /libcutils/Android.mk | |
parent | 893a4a47e8c9290128b9254af0246e36f821c260 (diff) | |
download | core-b39e3a8a4fa9b4121a9ceb45cacce843b32b1a65.tar.gz core-b39e3a8a4fa9b4121a9ceb45cacce843b32b1a65.tar.bz2 core-b39e3a8a4fa9b4121a9ceb45cacce843b32b1a65.zip |
libcutils: Don't build host property support
Only build property support for the device, not for the
host. Host side property support is being removed, as it
was only really used for the simulator.
process_name.c: When building this for the host, don't
reference properties.
Change-Id: Idcea5ad52a85e47eef17a381cb0601657efbdf13
Diffstat (limited to 'libcutils/Android.mk')
-rw-r--r-- | libcutils/Android.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcutils/Android.mk b/libcutils/Android.mk index afbc758a2..1c3185e9d 100644 --- a/libcutils/Android.mk +++ b/libcutils/Android.mk @@ -42,7 +42,6 @@ commonSources := \ strdup16to8.c \ strdup8to16.c \ process_name.c \ - properties.c \ threads.c \ sched_policy.c \ iosched_policy.c \ @@ -112,6 +111,7 @@ LOCAL_SRC_FILES := $(commonSources) \ debugger.c \ klog.c \ partition_utils.c \ + properties.c \ qtaguid.c \ trace.c \ uevent.c |