summaryrefslogtreecommitdiffstats
path: root/storaged/tests
diff options
context:
space:
mode:
authorJin Qian <jinqian@google.com>2017-08-15 16:26:53 -0700
committerJin Qian <jinqian@google.com>2017-08-15 16:56:28 -0700
commite4f1ec315d7fb8835c3d29ebda283dd840ae1a1f (patch)
treec6d4326713e025f53544a7166e9e2edf9808d260 /storaged/tests
parentcc03b938b08dd5d2f03ef00eab76d697c3cce37b (diff)
downloadsystem_core-e4f1ec315d7fb8835c3d29ebda283dd840ae1a1f.tar.gz
system_core-e4f1ec315d7fb8835c3d29ebda283dd840ae1a1f.tar.bz2
system_core-e4f1ec315d7fb8835c3d29ebda283dd840ae1a1f.zip
storaged: convert Android.mk to Android.bp
Change-Id: Ia59f6cc94f0eaea531a8e516b0492e0dfecc6ce0
Diffstat (limited to 'storaged/tests')
-rw-r--r--storaged/tests/Android.mk45
1 files changed, 0 insertions, 45 deletions
diff --git a/storaged/tests/Android.mk b/storaged/tests/Android.mk
deleted file mode 100644
index 26d04b162..000000000
--- a/storaged/tests/Android.mk
+++ /dev/null
@@ -1,45 +0,0 @@
-#
-# Copyright (C) 2014 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)
-
-test_module_prefix := storaged-
-test_tags := tests
-
-# -----------------------------------------------------------------------------
-# Unit tests.
-# -----------------------------------------------------------------------------
-
-test_c_flags := \
- -fstack-protector-all \
- -g \
- -Wall -Wextra \
- -Werror \
- -fno-builtin \
-
-test_src_files := \
- storaged_test.cpp \
-
-# Build tests for the logger. Run with:
-# adb shell /data/nativetest/storaged-unit-tests/storaged-unit-tests
-include $(CLEAR_VARS)
-LOCAL_MODULE := $(test_module_prefix)unit-tests
-LOCAL_MODULE_TAGS := $(test_tags)
-LOCAL_CFLAGS += $(test_c_flags)
-LOCAL_STATIC_LIBRARIES := libstoraged
-LOCAL_SHARED_LIBRARIES := libbase libcutils liblog libpackagelistparser
-LOCAL_SRC_FILES := $(test_src_files)
-include $(BUILD_NATIVE_TEST)