-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathAndroid.mk
More file actions
51 lines (38 loc) · 1.09 KB
/
Android.mk
File metadata and controls
51 lines (38 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Copyright 2018 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
LOCAL_PATH := $(call my-dir)
#########################
bsdrm_srcs = \
bsdrm/src/app.c \
bsdrm/src/debug.c \
bsdrm/src/draw.c \
bsdrm/src/drm_connectors.c \
bsdrm/src/drm_fb.c \
bsdrm/src/drm_open.c \
bsdrm/src/drm_pipe.c \
bsdrm/src/egl.c \
bsdrm/src/gl.c \
bsdrm/src/mmap.c \
bsdrm/src/open.c \
bsdrm/src/pipe.c
include $(CLEAR_VARS)
LOCAL_SRC_FILES := $(bsdrm_srcs) atomictest.c
LOCAL_MODULE := atomictest
LOCAL_MODULE_TAGS := optional
LOCAL_C_INCLUDES := \
$(LOCAL_PATH)/bsdrm/include \
$(VENDOR_SDK_INCLUDES)
LOCAL_CFLAGS := -O2 -g -W -Wall
LOCAL_SHARED_LIBRARIES := libdrm libminigbm
include $(BUILD_EXECUTABLE)
include $(CLEAR_VARS)
LOCAL_SRC_FILES := $(bsdrm_srcs) gamma_test.c
LOCAL_MODULE := gamma_test
LOCAL_MODULE_TAGS := optional
LOCAL_C_INCLUDES := \
$(LOCAL_PATH)/bsdrm/include \
$(VENDOR_SDK_INCLUDES)
LOCAL_CFLAGS := -O2 -g -W -Wall
LOCAL_SHARED_LIBRARIES := libdrm libminigbm
include $(BUILD_EXECUTABLE)