blob: 9eda3627540d905827b1bce673cacca0918d826c [file] [log] [blame]
Michael Wrightacc91eb2014-08-17 19:18:34 -07001# Copyright (C) 2014 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)
16include $(CLEAR_VARS)
17
18LOCAL_MODULE_TAGS := optional
19
20LOCAL_SRC_FILES := $(call all-subdir-java-files)
21
22LOCAL_PACKAGE_NAME := VolantisKeyboard
23LOCAL_CERTIFICATE := platform
24LOCAL_PROGUARD_ENABLED := disabled
25
26include $(BUILD_PACKAGE)
27
Michael Wrighte3de2f12014-08-21 11:08:19 -070028ifneq ($(TARGET_BUILD_PDK),true)
Michael Wrightacc91eb2014-08-17 19:18:34 -070029# Validate all key maps.
30include $(CLEAR_VARS)
31
32LOCAL_MODULE := validate_volantis_keymaps
33intermediates := $(call intermediates-dir-for,ETC,$(LOCAL_MODULE),,COMMON)
34LOCAL_BUILT_MODULE := $(intermediates)/stamp
35
36validatekeymaps := $(HOST_OUT_EXECUTABLES)/validatekeymaps$(HOST_EXECUTABLE_SUFFIX)
37volantis_keymaps := $(wildcard $(LOCAL_PATH)/res/raw/*.kcm)
38$(LOCAL_BUILT_MODULE): PRIVATE_VALIDATEKEYMAPS := $(validatekeymaps)
39$(LOCAL_BUILT_MODULE) : $(volantis_keymaps) | $(validatekeymaps)
40 $(hide) $(PRIVATE_VALIDATEKEYMAPS) $^
41 $(hide) mkdir -p $(dir $@) && touch $@
42
43# Run validatekeymaps unconditionally for platform build.
44droidcore all_modules : $(LOCAL_BUILT_MODULE)
45
46# Reset temp vars.
47validatekeymaps :=
48volantis_keymaps :=
Michael Wrighte3de2f12014-08-21 11:08:19 -070049endif # !PDK build