diff options
| author | Kenny Root <kroot@google.com> | 2010-12-06 10:21:47 -0800 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-12-06 10:21:47 -0800 |
| commit | 0d7128048eaa14362ec0194a91c34fc5551cd6ca (patch) | |
| tree | 8a1e05c40f2c58f698f9095993df1f9a147a8dd8 /packages/DefaultContainerService/jni/Android.mk | |
| parent | efd804b0173dba80f05b59e72b19054f64854d54 (diff) | |
| parent | aa183e2c9a279cb6aef7dc77855facfae795b6f8 (diff) | |
| download | frameworks_base-0d7128048eaa14362ec0194a91c34fc5551cd6ca.zip frameworks_base-0d7128048eaa14362ec0194a91c34fc5551cd6ca.tar.gz frameworks_base-0d7128048eaa14362ec0194a91c34fc5551cd6ca.tar.bz2 | |
Merge "Add measurement API to DefaultContainerService"
Diffstat (limited to 'packages/DefaultContainerService/jni/Android.mk')
| -rw-r--r-- | packages/DefaultContainerService/jni/Android.mk | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/packages/DefaultContainerService/jni/Android.mk b/packages/DefaultContainerService/jni/Android.mk new file mode 100644 index 0000000..a2febec --- /dev/null +++ b/packages/DefaultContainerService/jni/Android.mk @@ -0,0 +1,39 @@ +# +# Copyright (C) 2010 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +LOCAL_PATH := $(call my-dir) + +include $(CLEAR_VARS) + +LOCAL_PRELINK_MODULE := false + +LOCAL_SRC_FILES := \ + com_android_defcontainer_MeasurementUtils.cpp + +LOCAL_C_INCLUDES += \ + $(JNI_H_INCLUDES) + +LOCAL_SHARED_LIBRARIES := \ + libnativehelper \ + libutils + +LOCAL_STATIC_LIBRARIES := \ + libdiskusage + +LOCAL_MODULE := libdefcontainer_jni +LOCAL_MODULE_TAGS := optional + +include $(BUILD_SHARED_LIBRARY)
\ No newline at end of file |
