Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3759)

Unified Diff: build/android/finalize_splits_action.gypi

Issue 2392643003: Removes files from //build that we don't need (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/android/finalize_apk_action.gypi ('k') | build/android/findbugs_action.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/finalize_splits_action.gypi
diff --git a/build/android/finalize_splits_action.gypi b/build/android/finalize_splits_action.gypi
deleted file mode 100644
index daa7f834ebb08de0f5f2ab919ee2d1996f8705e5..0000000000000000000000000000000000000000
--- a/build/android/finalize_splits_action.gypi
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-# This file is meant to be included into an action to provide an action that
-# signs and zipaligns split APKs.
-#
-# Required variables:
-# apk_name - Base name of the apk.
-# Optional variables:
-# density_splits - Whether to process density splits
-# language_splits - Whether to language splits
-
-{
- 'variables': {
- 'keystore_path%': '<(DEPTH)/build/android/ant/chromium-debug.keystore',
- 'keystore_name%': 'chromiumdebugkey',
- 'keystore_password%': 'chromium',
- 'zipalign_path%': '<(android_sdk_tools)/zipalign',
- 'density_splits%': 0,
- 'language_splits%': [],
- 'resource_packaged_apk_name': '<(apk_name)-resources.ap_',
- 'resource_packaged_apk_path': '<(intermediate_dir)/<(resource_packaged_apk_name)',
- 'base_output_path': '<(PRODUCT_DIR)/apks/<(apk_name)',
- },
- 'inputs': [
- '<(DEPTH)/build/android/gyp/finalize_splits.py',
- '<(DEPTH)/build/android/gyp/finalize_apk.py',
- '<(DEPTH)/build/android/gyp/util/build_utils.py',
- '<(keystore_path)',
- ],
- 'action': [
- 'python', '<(DEPTH)/build/android/gyp/finalize_splits.py',
- '--resource-packaged-apk-path=<(resource_packaged_apk_path)',
- '--base-output-path=<(base_output_path)',
- '--zipalign-path=<(zipalign_path)',
- '--key-path=<(keystore_path)',
- '--key-name=<(keystore_name)',
- '--key-passwd=<(keystore_password)',
- ],
- 'conditions': [
- ['density_splits == 1', {
- 'message': 'Signing/aligning <(_target_name) density splits',
- 'inputs': [
- '<(resource_packaged_apk_path)_hdpi',
- '<(resource_packaged_apk_path)_xhdpi',
- '<(resource_packaged_apk_path)_xxhdpi',
- '<(resource_packaged_apk_path)_xxxhdpi',
- '<(resource_packaged_apk_path)_tvdpi',
- ],
- 'outputs': [
- '<(base_output_path)-density-hdpi.apk',
- '<(base_output_path)-density-xhdpi.apk',
- '<(base_output_path)-density-xxhdpi.apk',
- '<(base_output_path)-density-xxxhdpi.apk',
- '<(base_output_path)-density-tvdpi.apk',
- ],
- 'action': [
- '--densities=hdpi,xhdpi,xxhdpi,xxxhdpi,tvdpi',
- ],
- }],
- ['language_splits != []', {
- 'message': 'Signing/aligning <(_target_name) language splits',
- 'inputs': [
- "<!@(python <(DEPTH)/build/apply_locales.py '<(resource_packaged_apk_path)_ZZLOCALE' <(language_splits))",
- ],
- 'outputs': [
- "<!@(python <(DEPTH)/build/apply_locales.py '<(base_output_path)-lang-ZZLOCALE.apk' <(language_splits))",
- ],
- 'action': [
- '--languages=<(language_splits)',
- ],
- }],
- ],
-}
-
« no previous file with comments | « build/android/finalize_apk_action.gypi ('k') | build/android/findbugs_action.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698