1 diff --git a/Android.mk b/Android.mk 2 index e1d89db..3970857 100644 3 --- a/Android.mk 4 +++ b/Android.mk 5 @@ -1 +1,16 @@ 6 -# This file is intentionally empty, to prevent a platform build from descending further 7 +# Copyright 2017 The Chromium OS Authors. All rights reserved. 8 +# Use of this source code is governed by a BSD-style license that can be 9 +# found in the LICENSE file. 10 + 11 +LOCAL_PATH := $(call my-dir) 12 + 13 +include $(CLEAR_VARS) 14 +LOCAL_MODULE_TAGS := tests 15 +LOCAL_C_INCLUDES := $(LOCAL_PATH)/source 16 +LOCAL_SRC_FILES:= apps/synthmark.cpp 17 +LOCAL_CFLAGS += -g -std=c++11 -Ofast 18 +LOCAL_CFLAGS += $(CFLAGS_FOR_BENCH_SUITE) 19 +LOCAL_LDFLAGS += $(LDFLAGS_FOR_BENCH_SUITE) 20 +#LOCAL_SHARED_LIBRARIES := libcutils libutils 21 +LOCAL_MODULE := synthmark 22 +include $(BUILD_EXECUTABLE) 23