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

Unified Diff: android_webview/build/jarjar_resources.gypi

Issue 1040653003: Remove support for jarjar-ing layout.xml files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 | « android_webview/build/jarjar-rules.txt ('k') | build/android/gyp/jarjar_resources.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/build/jarjar_resources.gypi
diff --git a/android_webview/build/jarjar_resources.gypi b/android_webview/build/jarjar_resources.gypi
deleted file mode 100644
index 0f6cb06a8c19592e306456d012ee0a914b61aff7..0000000000000000000000000000000000000000
--- a/android_webview/build/jarjar_resources.gypi
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 2014 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 a target to provide a rule
-# to run the equivalent of jarjar on Java resources (layout.xml files).
-#
-# To use this, create a gyp target with the following form:
-# {
-# 'target_name': 'my-package_java',
-# 'type': 'none',
-# 'variables': {
-# 'java_in_dir': 'path/to/package/root',
-# },
-# 'includes': ['path/to/this/gypi/file'],
-# }
-#
-# Required variables:
-# res_dir - The top-level resources folder.
-# rules_file - Path to the file containing jar-jar rules.
-
-{
- 'variables': {
- 'intermediate_dir': '<(SHARED_INTERMEDIATE_DIR)/<(_target_name)',
- 'jarjar_stamp': '<(intermediate_dir)/jarjar_resources.stamp',
- 'resource_input_paths': ['<!@(find <(res_dir) -type f | sort)'],
- },
- 'actions': [{
- 'action_name': 'jarjar resources',
- 'message': 'Copying and jar-jaring resources for <(_target_name)',
- 'variables': {
- 'out_dir': '<(intermediate_dir)/jarjar_res',
- },
- 'inputs': [
- '<(DEPTH)/build/android/gyp/util/build_utils.py',
- '<(DEPTH)/build/android/gyp/jarjar_resources.py',
- '>@(resource_input_paths)',
- ],
- 'outputs': [
- '<(jarjar_stamp)',
- ],
- 'action': [
- 'python', '../build/android/gyp/jarjar_resources.py',
- '--input-dir', '<(res_dir)',
- '--output-dir', '<(out_dir)',
- '--rules-path', '<(rules_file)',
- '--stamp', '<(jarjar_stamp)',
- ]
- }],
-}
« no previous file with comments | « android_webview/build/jarjar-rules.txt ('k') | build/android/gyp/jarjar_resources.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698