blob: db87cb9462e1c468d367f2f20ca966c3d682ffd5 [file] [log] [blame]
Zhizhou Yange5986902017-08-10 17:37:53 -07001diff --git a/Android.mk b/Android.mk
2index 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)