| 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
|
|
|