diff options
author | Colin Cross <ccross@android.com> | 2019-07-29 20:37:59 -0700 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-07-29 20:37:59 -0700 |
commit | 272bae01a7321645d34bb84c4b2ecd057d81adb0 (patch) | |
tree | 6723cefa5e18b86b76a975570c4660d2f45645cb | |
parent | 443c5edeea615aab25f129bc6959f753077fc848 (diff) | |
parent | aa98bac24bd875bbcd338b22243b6a40ba2b322b (diff) |
Merge "Convert more of frameworks/base/packages to Android.bp" into stage-aosp-master am: ba9073a6a8 am: 97c07ce018 am: 7d089ac5ae
am: aa98bac24b
Change-Id: Iefbb6eeb03d46753bfc1c2ac4ca793788a4ed7fa
-rw-r--r-- | packages/DynamicSystemInstallationService/Android.bp | 14 | ||||
-rw-r--r-- | packages/DynamicSystemInstallationService/Android.mk | 19 | ||||
-rw-r--r-- | packages/InputDevices/Android.bp | 42 | ||||
-rw-r--r-- | packages/InputDevices/Android.mk | 50 | ||||
-rw-r--r-- | packages/MtpDocumentsProvider/Android.bp | 11 | ||||
-rw-r--r-- | packages/MtpDocumentsProvider/Android.mk | 18 | ||||
-rw-r--r-- | packages/SettingsLib/tests/Android.mk | 19 | ||||
-rw-r--r-- | packages/SimAppDialog/Android.bp | 15 | ||||
-rw-r--r-- | packages/SimAppDialog/Android.mk | 19 |
9 files changed, 82 insertions, 125 deletions
diff --git a/packages/DynamicSystemInstallationService/Android.bp b/packages/DynamicSystemInstallationService/Android.bp new file mode 100644 index 000000000000..f1a18ae2a53f --- /dev/null +++ b/packages/DynamicSystemInstallationService/Android.bp @@ -0,0 +1,14 @@ +android_app { + name: "DynamicSystemInstallationService", + + srcs: ["src/**/*.java"], + resource_dirs: ["res"], + + certificate: "platform", + privileged: true, + platform_apis: true, + + optimize: { + enabled: false, + }, +} diff --git a/packages/DynamicSystemInstallationService/Android.mk b/packages/DynamicSystemInstallationService/Android.mk deleted file mode 100644 index 16aca1bd07c5..000000000000 --- a/packages/DynamicSystemInstallationService/Android.mk +++ /dev/null @@ -1,19 +0,0 @@ -LOCAL_PATH:= $(call my-dir) -include $(CLEAR_VARS) - -LOCAL_MODULE_TAGS := optional - -LOCAL_SRC_FILES := $(call all-java-files-under, src) -LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, res) - -LOCAL_USE_AAPT2 := true - -LOCAL_PACKAGE_NAME := DynamicSystemInstallationService -LOCAL_CERTIFICATE := platform -LOCAL_PRIVILEGED_MODULE := true -LOCAL_PRIVATE_PLATFORM_APIS := true - -LOCAL_PROGUARD_ENABLED := disabled - - -include $(BUILD_PACKAGE) diff --git a/packages/InputDevices/Android.bp b/packages/InputDevices/Android.bp new file mode 100644 index 000000000000..7532aea23615 --- /dev/null +++ b/packages/InputDevices/Android.bp @@ -0,0 +1,42 @@ +// Copyright (C) 2012 The Android Open Source Project +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +android_app { + name: "InputDevices", + + srcs: [ + "**/*.java", + ":validate_input_devices_keymaps", + ], + + resource_dirs: ["res"], + + sdk_version: "current", + certificate: "platform", + privileged: true, +} + +// Validate all key maps. +// Produces an empty srcjar that is used as an input to InputDevices to make sure +// the check runs for platform builds. +genrule { + name: "validate_input_devices_keymaps", + tools: [ + "validatekeymaps", + "soong_zip", + ], + srcs: ["res/raw/*.kcm"], + out: ["validate_input_devices_keymaps.srcjar"], + cmd: "$(location validatekeymaps) -q $(in) && $(location soong_zip) -o $(out)", +} diff --git a/packages/InputDevices/Android.mk b/packages/InputDevices/Android.mk deleted file mode 100644 index 80803fd94ff1..000000000000 --- a/packages/InputDevices/Android.mk +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright (C) 2012 The Android Open Source Project -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -LOCAL_PATH:= $(call my-dir) -include $(CLEAR_VARS) - -LOCAL_MODULE_TAGS := optional - -LOCAL_SRC_FILES := $(call all-subdir-java-files) - -LOCAL_JAVA_LIBRARIES := - -LOCAL_PACKAGE_NAME := InputDevices -LOCAL_SDK_VERSION := current -LOCAL_CERTIFICATE := platform -LOCAL_PRIVILEGED_MODULE := true - -include $(BUILD_PACKAGE) - -# Validate all key maps. -include $(CLEAR_VARS) - -LOCAL_MODULE := validate_input_devices_keymaps -intermediates := $(call intermediates-dir-for,ETC,$(LOCAL_MODULE),,COMMON) -LOCAL_BUILT_MODULE := $(intermediates)/stamp - -validatekeymaps := $(HOST_OUT_EXECUTABLES)/validatekeymaps$(HOST_EXECUTABLE_SUFFIX) -input_devices_keymaps := $(wildcard $(LOCAL_PATH)/res/raw/*.kcm) -$(LOCAL_BUILT_MODULE): PRIVATE_VALIDATEKEYMAPS := $(validatekeymaps) -$(LOCAL_BUILT_MODULE) : $(input_devices_keymaps) | $(validatekeymaps) - $(hide) $(PRIVATE_VALIDATEKEYMAPS) -q $^ - $(hide) mkdir -p $(dir $@) && touch $@ - -# Run validatekeymaps unconditionally for platform build. -droidcore : $(LOCAL_BUILT_MODULE) - -# Reset temp vars. -validatekeymaps := -input_devices_keymaps := diff --git a/packages/MtpDocumentsProvider/Android.bp b/packages/MtpDocumentsProvider/Android.bp new file mode 100644 index 000000000000..3dafa2649af6 --- /dev/null +++ b/packages/MtpDocumentsProvider/Android.bp @@ -0,0 +1,11 @@ +android_app { + name: "MtpDocumentsProvider", + + srcs: ["src/**/*.java"], + platform_apis: true, + certificate: "media", + privileged: true, + optimize: { + proguard_flags_files: ["proguard.flags"], + }, +} diff --git a/packages/MtpDocumentsProvider/Android.mk b/packages/MtpDocumentsProvider/Android.mk deleted file mode 100644 index 2d62a07566bf..000000000000 --- a/packages/MtpDocumentsProvider/Android.mk +++ /dev/null @@ -1,18 +0,0 @@ -LOCAL_PATH:= $(call my-dir) -include $(CLEAR_VARS) - -LOCAL_MODULE_TAGS := optional -LOCAL_SRC_FILES := $(call all-java-files-under, src) -LOCAL_PACKAGE_NAME := MtpDocumentsProvider -LOCAL_PRIVATE_PLATFORM_APIS := true -LOCAL_CERTIFICATE := media -LOCAL_PRIVILEGED_MODULE := true -LOCAL_PROGUARD_FLAG_FILES := proguard.flags - -# Only enable asserts on userdebug/eng builds -ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT))) -LOCAL_JACK_FLAGS += -D jack.assert.policy=always -endif - -include $(BUILD_PACKAGE) -include $(call all-makefiles-under, $(LOCAL_PATH)) diff --git a/packages/SettingsLib/tests/Android.mk b/packages/SettingsLib/tests/Android.mk deleted file mode 100644 index 333c41d33f40..000000000000 --- a/packages/SettingsLib/tests/Android.mk +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright (C) 2016 The Android Open Source Project -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -LOCAL_PATH := $(call my-dir) -include $(CLEAR_VARS) - -# Include all makefiles in subdirectories -include $(call all-makefiles-under,$(LOCAL_PATH)) diff --git a/packages/SimAppDialog/Android.bp b/packages/SimAppDialog/Android.bp new file mode 100644 index 000000000000..ff26710fa2e1 --- /dev/null +++ b/packages/SimAppDialog/Android.bp @@ -0,0 +1,15 @@ +android_app { + name: "SimAppDialog", + + srcs: ["src/**/*.java"], + + platform_apis: true, + certificate: "platform", + + static_libs: [ + "androidx.legacy_legacy-support-v4", + "setup-wizard-lib", + ], + + resource_dirs: ["res"], +} diff --git a/packages/SimAppDialog/Android.mk b/packages/SimAppDialog/Android.mk deleted file mode 100644 index 991e3330e00a..000000000000 --- a/packages/SimAppDialog/Android.mk +++ /dev/null @@ -1,19 +0,0 @@ -LOCAL_PATH:= $(call my-dir) -include $(CLEAR_VARS) - -LOCAL_MODULE_TAGS := optional - -LOCAL_SRC_FILES := $(call all-java-files-under, src) - -LOCAL_PACKAGE_NAME := SimAppDialog -LOCAL_PRIVATE_PLATFORM_APIS := true -LOCAL_CERTIFICATE := platform - - -LOCAL_STATIC_ANDROID_LIBRARIES := \ - androidx.legacy_legacy-support-v4 - -LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res -include frameworks/opt/setupwizard/library/common-platform-deprecated.mk - -include $(BUILD_PACKAGE) |