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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 'action': [ | 49 'action': [ |
50 'python', | 50 'python', |
51 '<(rename_locales)', | 51 '<(rename_locales)', |
52 '-p', '<(PRODUCT_DIR)', | 52 '-p', '<(PRODUCT_DIR)', |
53 '-s', '<(SHARED_INTERMEDIATE_DIR)', | 53 '-s', '<(SHARED_INTERMEDIATE_DIR)', |
54 '<@(locales)', | 54 '<@(locales)', |
55 ], | 55 ], |
56 } | 56 } |
57 ], | 57 ], |
58 }], | 58 }], |
| 59 ['v8_use_external_startup_data==1', { |
| 60 'variables': { |
| 61 'conditions': [ |
| 62 ['(target_arch=="arm" or target_arch=="x86" or target_arch=="mips"
)', { |
| 63 'arch_suffix':'32' |
| 64 }], |
| 65 ['(target_arch=="arm64" or target_arch=="x86_64" or target_arch=="
mips64")', { |
| 66 'arch_suffix':'64' |
| 67 }], |
| 68 ], |
| 69 }, |
| 70 'actions': [ |
| 71 { |
| 72 'action_name': 'rename_snapshot_blob', |
| 73 'inputs': [ |
| 74 '<(PRODUCT_DIR)/snapshot_blob.bin', |
| 75 ], |
| 76 'outputs': [ |
| 77 '<(PRODUCT_DIR)/snapshot_blob_<(arch_suffix).bin', |
| 78 ], |
| 79 'action': [ |
| 80 'python', |
| 81 '<(DEPTH)/build/cp.py', |
| 82 '<@(_inputs)', |
| 83 '<@(_outputs)', |
| 84 ], |
| 85 }, |
| 86 { |
| 87 'action_name': 'rename_natives_blob', |
| 88 'inputs': [ |
| 89 '<(PRODUCT_DIR)/natives_blob.bin', |
| 90 ], |
| 91 'outputs': [ |
| 92 '<(PRODUCT_DIR)/natives_blob_<(arch_suffix).bin', |
| 93 ], |
| 94 'action': [ |
| 95 'python', |
| 96 '<(DEPTH)/build/cp.py', |
| 97 '<@(_inputs)', |
| 98 '<@(_outputs)', |
| 99 ], |
| 100 }, |
| 101 ], |
| 102 }], |
59 ], | 103 ], |
60 }, | 104 }, |
61 { | 105 { |
62 'target_name': 'android_webview_strings_grd', | 106 'target_name': 'android_webview_strings_grd', |
63 'android_unmangled_name': 1, | 107 'android_unmangled_name': 1, |
64 'type': 'none', | 108 'type': 'none', |
65 'variables': { | 109 'variables': { |
66 'grd_file': '../android_webview/java/strings/android_webview_strings.grd
', | 110 'grd_file': '../android_webview/java/strings/android_webview_strings.grd
', |
67 }, | 111 }, |
68 'includes': [ | 112 'includes': [ |
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
359 '../ui/android/ui_android.gyp:ui_strings_grd', | 403 '../ui/android/ui_android.gyp:ui_strings_grd', |
360 'android_webview_jarjar_content_resources', | 404 'android_webview_jarjar_content_resources', |
361 'android_webview_jarjar_ui_resources', | 405 'android_webview_jarjar_ui_resources', |
362 'android_webview_strings_grd', | 406 'android_webview_strings_grd', |
363 ], | 407 ], |
364 }, | 408 }, |
365 ], | 409 ], |
366 }], | 410 }], |
367 ], | 411 ], |
368 } | 412 } |
OLD | NEW |