blob: 73240f4f90e85e017bb45ee4a48b6f404d1069a7 [file] [log] [blame]
Greg Hartman40b88f52017-06-22 15:34:11 -07001# Copyright (C) 2017 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15LOCAL_PATH := $(call my-dir)
16
17include $(CLEAR_VARS)
Greg Hartman61c65cb2018-03-19 12:02:51 -070018LOCAL_MODULE := vsoc_driver_test
19LOCAL_MODULE_TAGS := optional
20LOCAL_SRC_FILES := vsoc_driver_test.cpp
21
22LOCAL_C_INCLUDES := \
23 device/google/cuttlefish_common \
24 device/google/cuttlefish_kernel
25
26LOCAL_CFLAGS += -DGTEST_OS_LINUX_ANDROID -DGTEST_HAS_STD_STRING -Werror -Wall
27
28LOCAL_STATIC_LIBRARIES := \
29 libgtest
30
31LOCAL_SHARED_LIBRARIES := \
32 vsoc_lib \
33 cuttlefish_auto_resources \
34 libcuttlefish_fs \
35 libbase
36
37LOCAL_MULTILIB := first
38LOCAL_VENDOR_MODULE := true
39include $(BUILD_EXECUTABLE)
40
41include $(CLEAR_VARS)
Greg Hartman40b88f52017-06-22 15:34:11 -070042LOCAL_MODULE := vsoc_guest_region_e2e_test
43LOCAL_MODULE_TAGS := optional
44LOCAL_SRC_FILES := guest_region_e2e_test.cpp
45
46LOCAL_C_INCLUDES := \
47 device/google/cuttlefish_common \
48 device/google/cuttlefish_kernel
49
Greg Hartmanffb4c492017-12-19 23:48:34 -080050LOCAL_CFLAGS += -DGTEST_OS_LINUX_ANDROID -DGTEST_HAS_STD_STRING -Werror -Wall
Greg Hartman40b88f52017-06-22 15:34:11 -070051
52LOCAL_STATIC_LIBRARIES := \
53 libgtest
54
55LOCAL_SHARED_LIBRARIES := \
Greg Hartmance872ef2017-12-04 22:51:47 -080056 vsoc_lib \
57 cuttlefish_auto_resources \
Greg Hartman40b88f52017-06-22 15:34:11 -070058 libcuttlefish_fs \
59 libbase
60
61LOCAL_MULTILIB := first
62LOCAL_VENDOR_MODULE := true
63include $(BUILD_EXECUTABLE)
Jorge E. Moreira334f3a92018-11-12 10:22:53 -080064
65include $(CLEAR_VARS)
66LOCAL_MODULE := vsoc_managed_region_e2e_test
67LOCAL_MODULE_TAGS := optional
68LOCAL_SRC_FILES := managed_region_e2e_test.cpp
69
70LOCAL_C_INCLUDES := \
71 device/google/cuttlefish_common \
72 device/google/cuttlefish_kernel
73
74LOCAL_CFLAGS += -DGTEST_OS_LINUX_ANDROID -DGTEST_HAS_STD_STRING -Werror -Wall
75
76LOCAL_STATIC_LIBRARIES := \
77 libgtest
78
79LOCAL_SHARED_LIBRARIES := \
80 vsoc_lib \
81 cuttlefish_auto_resources \
82 libcuttlefish_fs \
83 libbase
84
85LOCAL_MULTILIB := first
86LOCAL_VENDOR_MODULE := true
87include $(BUILD_EXECUTABLE)