blob: b548a7691e2d575428971a50c0ff163086956358 [file] [log] [blame]
Jean-Baptiste Queru671476b2012-05-29 10:40:37 -07001# Copyright (C) 2010 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
15#
16# This file sets variables that control the way modules are built
17# thorughout the system. It should not be used to conditionally
18# disable makefiles (the proper mechanism to control what gets
19# included in a build is to use PRODUCT_PACKAGES in a product
20# definition file).
21#
22
23# WARNING: This line must come *before* including the proprietary
24# variant, so that it gets overwritten by the parent (which goes
25# against the traditional rules of inheritance).
26# The proprietary variant sets USE_CAMERA_STUB := false, this way
27# we use the camera stub when the vendor tree isn't present, and
28# the true camera library when the vendor tree is available. Similarly,
29# we set USE_PROPRIETARY_AUDIO_EXTENSIONS to true in the proprietary variant as
30# well.
31USE_CAMERA_STUB := true
32USE_PROPRIETARY_AUDIO_EXTENSIONS := false
33
Ramanan Rajeswarane56eff82012-08-08 09:19:48 -070034BOARD_LIB_DUMPSTATE := libdumpstate.grouper
35
36TARGET_RECOVERY_UI_LIB := librecovery_ui_grouper
37
jessicac9cf5d42012-09-21 18:02:22 -070038TARGET_RELEASETOOLS_EXTENSIONS := device/asus/grouper
39
Jean-Baptiste Queru671476b2012-05-29 10:40:37 -070040-include vendor/asus/grouper/BoardConfigVendor.mk
Jean-Baptiste Querua057d5d2012-08-03 14:48:09 -070041include device/asus/grouper/BoardConfigCommon.mk
rpcraigd86e6662012-11-02 06:35:29 -040042
Ken Sumrallfae44512013-02-22 17:38:08 -080043TARGET_RECOVERY_FSTAB = device/asus/grouper/fstab.grouper
44
rpcraigd86e6662012-11-02 06:35:29 -040045BOARD_SEPOLICY_DIRS := \
46 device/asus/grouper/sepolicy
47
48BOARD_SEPOLICY_UNION := \
49 file_contexts \
Robert Craig83f69192013-03-27 06:12:51 -040050 genfs_contexts \
51 app.te \
52 btmacreader.te \
repo syncc80dc0c2013-05-14 12:44:57 -070053 compatibility.te \
rpcraigd86e6662012-11-02 06:35:29 -040054 device.te \
55 drmserver.te \
repo syncb1b64e02013-05-07 13:34:19 -070056 init_shell.te \
rpcraigd86e6662012-11-02 06:35:29 -040057 file.te \
repo syncffc60d82013-05-01 14:01:31 -070058 rild.te \
rpcraigd86e6662012-11-02 06:35:29 -040059 sensors_config.te \
60 shell.te \
61 surfaceflinger.te \
Robert Craig83f69192013-03-27 06:12:51 -040062 system.te \
63 zygote.te