summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Willemsen2016-08-26 17:01:36 -0500
committerDan Willemsen2016-08-26 18:19:21 -0500
commit194edf772e4df2ade86acf97f616243aaef205fc (patch)
tree32bb95c53295dcccdde4afa28eeb1cec46f36f39 /libsync/tests/Android.mk
parent091b631915c68c801bbded01ac8bb3a7af18436e (diff)
downloadplatform-system-core-194edf772e4df2ade86acf97f616243aaef205fc.tar.gz
platform-system-core-194edf772e4df2ade86acf97f616243aaef205fc.tar.xz
platform-system-core-194edf772e4df2ade86acf97f616243aaef205fc.zip
Convert to Android.bp
See build/soong/README.md for more information. I tested the following tests on a Nexus9 and linux host, and they continued to pass: /data/nativetest{,64}/bootstat_tests/bootstat_tests out/host/linux-x86/bin/nativetest{,64}/bootstat_tests/bootstat_tests /data/nativetest64/memunreachable_test/memunreachable_test out/host/linux-x86/bin/nativetest{,64}/memunreachable_test/memunreachable_test These continue to fail just like before this change: /data/nativetest{,64}/sync_test/sync_test (was /system/bin/sync_test) /data/nativetest{,64}/sync-unit-test/sync-unit-test /data/nativetest/memunreachable_test/memunreachable_test Test: See above Change-Id: I691e564e0cf008dd363e3746223b153d712e024d
Diffstat (limited to 'libsync/tests/Android.mk')
-rw-r--r--libsync/tests/Android.mk29
1 files changed, 0 insertions, 29 deletions
diff --git a/libsync/tests/Android.mk b/libsync/tests/Android.mk
deleted file mode 100644
index 8137c7af6..000000000
--- a/libsync/tests/Android.mk
+++ /dev/null
@@ -1,29 +0,0 @@
1#
2# Copyright 2014 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17LOCAL_PATH:= $(call my-dir)
18
19include $(CLEAR_VARS)
20LOCAL_CLANG := true
21LOCAL_MODULE := sync-unit-tests
22LOCAL_CFLAGS += -g -Wall -Werror -std=gnu++11 -Wno-missing-field-initializers -Wno-sign-compare
23LOCAL_SHARED_LIBRARIES += libsync
24LOCAL_STATIC_LIBRARIES += libgtest_main
25LOCAL_C_INCLUDES += $(LOCAL_PATH)/../include
26LOCAL_C_INCLUDES += $(LOCAL_PATH)/..
27LOCAL_SRC_FILES := \
28 sync_test.cpp
29include $(BUILD_NATIVE_TEST)