The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2008 The Android Open Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | |
| 17 | LOCAL_PATH := $(my-dir) |
| 18 | |
| 19 | ######################## |
| 20 | include $(CLEAR_VARS) |
| 21 | |
| 22 | LOCAL_MODULE := platform.xml |
| 23 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 24 | LOCAL_MODULE_CLASS := ETC |
| 25 | |
| 26 | # This will install the file in /system/etc/permissions |
| 27 | # |
| 28 | LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/permissions |
| 29 | |
| 30 | LOCAL_SRC_FILES := $(LOCAL_MODULE) |
| 31 | |
| 32 | include $(BUILD_PREBUILT) |
Dianne Hackborn | 67245e0 | 2009-09-16 11:05:25 -0700 | [diff] [blame] | 33 | |
| 34 | ######################## |
Dan Morrill | 50ab63f | 2010-03-05 16:16:19 -0800 | [diff] [blame] | 35 | #include $(CLEAR_VARS) |
Dianne Hackborn | 67245e0 | 2009-09-16 11:05:25 -0700 | [diff] [blame] | 36 | |
Dan Morrill | 50ab63f | 2010-03-05 16:16:19 -0800 | [diff] [blame] | 37 | #LOCAL_MODULE := required_hardware.xml |
Dianne Hackborn | 67245e0 | 2009-09-16 11:05:25 -0700 | [diff] [blame] | 38 | |
Dan Morrill | 50ab63f | 2010-03-05 16:16:19 -0800 | [diff] [blame] | 39 | #LOCAL_MODULE_CLASS := ETC |
Dianne Hackborn | 67245e0 | 2009-09-16 11:05:25 -0700 | [diff] [blame] | 40 | |
| 41 | # This will install the file in /system/etc/permissions |
| 42 | # |
Dan Morrill | 50ab63f | 2010-03-05 16:16:19 -0800 | [diff] [blame] | 43 | #LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/permissions |
Dianne Hackborn | 67245e0 | 2009-09-16 11:05:25 -0700 | [diff] [blame] | 44 | |
Dan Morrill | 50ab63f | 2010-03-05 16:16:19 -0800 | [diff] [blame] | 45 | #LOCAL_SRC_FILES := $(LOCAL_MODULE) |
Dianne Hackborn | 67245e0 | 2009-09-16 11:05:25 -0700 | [diff] [blame] | 46 | |
Dan Morrill | 50ab63f | 2010-03-05 16:16:19 -0800 | [diff] [blame] | 47 | #include $(BUILD_PREBUILT) |