| OLD | NEW |
| 1 # Copyright 2009 The Chromium Authors. All rights reserved. | 1 # Copyright 2009 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 { | 4 { |
| 5 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 }, | 7 }, |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 'target_name': 'android_webview_pak', | 10 'target_name': 'android_webview_pak', |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 }, | 30 }, |
| 31 'includes': [ '../build/repack_action.gypi' ], | 31 'includes': [ '../build/repack_action.gypi' ], |
| 32 }, | 32 }, |
| 33 { | 33 { |
| 34 'action_name': 'add_en_US_pak_locale', | 34 'action_name': 'add_en_US_pak_locale', |
| 35 'variables': { | 35 'variables': { |
| 36 'pak_inputs': ['<(SHARED_INTERMEDIATE_DIR)/content/app/strings/conte
nt_strings_en-US.pak'], | 36 'pak_inputs': ['<(SHARED_INTERMEDIATE_DIR)/content/app/strings/conte
nt_strings_en-US.pak'], |
| 37 'pak_output': '<(PRODUCT_DIR)/android_webview_assets/en-US.pak', | 37 'pak_output': '<(PRODUCT_DIR)/android_webview_assets/en-US.pak', |
| 38 }, | 38 }, |
| 39 'includes': [ '../build/repack_action.gypi' ], | 39 'includes': [ '../build/repack_action.gypi' ], |
| 40 } | 40 }, |
| 41 ], |
| 42 'conditions': [ |
| 43 » ['v8_use_external_startup_data==1', { |
| 44 » 'variables': { |
| 45 » 'conditions': [ |
| 46 » ['(target_arch=="arm" or target_arch=="x86" or target_arch=="mips"
)', { |
| 47 » » 'arch_suffix':'32' |
| 48 » }], |
| 49 » ['(target_arch=="arm64" or target_arch=="x86_64" or target_arch=="
mips64")', { |
| 50 » » 'arch_suffix':'64' |
| 51 » }], |
| 52 » ], |
| 53 » }, |
| 54 » 'actions': [ |
| 55 » { |
| 56 » 'action_name': 'rename_snapshot_blob', |
| 57 » 'inputs': [ |
| 58 » » '<(PRODUCT_DIR)/snapshot_blob.bin', |
| 59 » ], |
| 60 » 'outputs': [ |
| 61 » » '<(PRODUCT_DIR)/snapshot_blob_<(arch_suffix).bin', |
| 62 » ], |
| 63 » 'action': [ |
| 64 » » 'python', |
| 65 » » '<(DEPTH)/build/cp.py', |
| 66 » » '<@(_inputs)', |
| 67 » » '<@(_outputs)', |
| 68 » ], |
| 69 » }, |
| 70 » { |
| 71 » 'action_name': 'rename_natives_blob', |
| 72 » 'inputs': [ |
| 73 » » '<(PRODUCT_DIR)/natives_blob.bin', |
| 74 » ], |
| 75 » 'outputs': [ |
| 76 » » '<(PRODUCT_DIR)/natives_blob_<(arch_suffix).bin', |
| 77 » ], |
| 78 » 'action': [ |
| 79 » » 'python', |
| 80 » » '<(DEPTH)/build/cp.py', |
| 81 » » '<@(_inputs)', |
| 82 » » '<@(_outputs)', |
| 83 » ], |
| 84 » }, |
| 85 » ], |
| 86 » }], |
| 41 ], | 87 ], |
| 42 }, | 88 }, |
| 43 { | 89 { |
| 44 'target_name': 'android_webview_strings_grd', | 90 'target_name': 'android_webview_strings_grd', |
| 45 'android_unmangled_name': 1, | 91 'android_unmangled_name': 1, |
| 46 'type': 'none', | 92 'type': 'none', |
| 47 'variables': { | 93 'variables': { |
| 48 'grd_file': '../android_webview/java/strings/android_webview_strings.grd
', | 94 'grd_file': '../android_webview/java/strings/android_webview_strings.grd
', |
| 49 }, | 95 }, |
| 50 'includes': [ | 96 'includes': [ |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 '../ui/android/ui_android.gyp:ui_strings_grd', | 387 '../ui/android/ui_android.gyp:ui_strings_grd', |
| 342 'android_webview_jarjar_content_resources', | 388 'android_webview_jarjar_content_resources', |
| 343 'android_webview_jarjar_ui_resources', | 389 'android_webview_jarjar_ui_resources', |
| 344 'android_webview_strings_grd', | 390 'android_webview_strings_grd', |
| 345 ], | 391 ], |
| 346 }, | 392 }, |
| 347 ], | 393 ], |
| 348 }], | 394 }], |
| 349 ], | 395 ], |
| 350 } | 396 } |
| OLD | NEW |