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

Unified Diff: build/android/gyp/process_resources.py

Issue 1136273003: [Android] Remove v14 resource verification entirely. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed AssertNoDeprecatedAttributesInDir Created 5 years, 7 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/gyp/generate_v14_compatible_resources.py ('k') | build/config/android/internal_rules.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/gyp/process_resources.py
diff --git a/build/android/gyp/process_resources.py b/build/android/gyp/process_resources.py
index 9de5c59436349788cfe8481c0ecdb20d399cc22c..8a2637da33af144b2ca515394480fbbaf74b5bf2 100755
--- a/build/android/gyp/process_resources.py
+++ b/build/android/gyp/process_resources.py
@@ -69,12 +69,6 @@ def ParseArgs(args):
help='Path to proguard.txt generated file')
parser.add_option(
- '--v14-verify-only',
- action='store_true',
- help='Do not generate v14 resources. Instead, just verify that the '
- 'resources are already compatible with v14, i.e. they don\'t use '
- 'attributes that cause crashes on certain devices.')
- parser.add_option(
'--v14-skip',
action="store_true",
help='Do not generate nor verify v14 resources')
@@ -328,8 +322,7 @@ def main():
for resource_dir in input_resource_dirs:
generate_v14_compatible_resources.GenerateV14Resources(
resource_dir,
- v14_dir,
- options.v14_verify_only)
+ v14_dir)
dep_zips = build_utils.ParseGypList(options.dependencies_res_zips)
input_files += dep_zips
« no previous file with comments | « build/android/gyp/generate_v14_compatible_resources.py ('k') | build/config/android/internal_rules.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698