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', |
11 'type': 'none', | 11 'type': 'none', |
12 'dependencies': [ | 12 'dependencies': [ |
13 '<(DEPTH)/content/app/resources/content_resources.gyp:content_resources'
, | 13 '<(DEPTH)/content/app/resources/content_resources.gyp:content_resources'
, |
14 '<(DEPTH)/net/net.gyp:net_resources', | 14 '<(DEPTH)/net/net.gyp:net_resources', |
15 '<(DEPTH)/third_party/WebKit/public/blink_resources.gyp:blink_resources'
, | 15 '<(DEPTH)/third_party/WebKit/public/blink_resources.gyp:blink_resources'
, |
16 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources', | 16 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources', |
17 ], | 17 ], |
18 'variables': { | 18 'variables': { |
19 'conditions': [ | 19 'conditions': [ |
20 ['target_arch=="arm" or target_arch=="ia32" or target_arch=="mipsel"',
{ | 20 ['target_arch=="arm" or target_arch=="ia32" or target_arch=="mipsel"',
{ |
21 'arch_suffix':'32' | 21 'arch_suffix':'32' |
22 }], | 22 }], |
23 ['target_arch=="arm64" or target_arch=="x64" or target_arch=="mips64el
"', { | 23 ['target_arch=="arm64" or target_arch=="x64" or target_arch=="mips64el
"', { |
24 'arch_suffix':'64' | 24 'arch_suffix':'64' |
25 }], | 25 }], |
26 ], | 26 ], |
| 27 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/android_webview', |
27 }, | 28 }, |
28 'actions': [ | 29 'actions': [ |
29 { | 30 { |
| 31 'action_name': 'generate_aw_renderer_resources', |
| 32 'variables': { |
| 33 'grit_grd_file': 'renderer/aw_renderer_resources.grd', |
| 34 }, |
| 35 'includes': [ '../build/grit_action.gypi' ], |
| 36 }, |
| 37 { |
30 'action_name': 'repack_android_webview_pack', | 38 'action_name': 'repack_android_webview_pack', |
31 'variables': { | 39 'variables': { |
32 'pak_inputs': [ | 40 'pak_inputs': [ |
33 '<(SHARED_INTERMEDIATE_DIR)/blink/public/resources/blink_resources
.pak', | 41 '<(SHARED_INTERMEDIATE_DIR)/blink/public/resources/blink_resources
.pak', |
34 '<(SHARED_INTERMEDIATE_DIR)/blink/public/resources/blink_image_res
ources_100_percent.pak', | 42 '<(SHARED_INTERMEDIATE_DIR)/blink/public/resources/blink_image_res
ources_100_percent.pak', |
35 '<(SHARED_INTERMEDIATE_DIR)/content/app/resources/content_resource
s_100_percent.pak', | 43 '<(SHARED_INTERMEDIATE_DIR)/content/app/resources/content_resource
s_100_percent.pak', |
36 '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak', | 44 '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak', |
37 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.pak', | 45 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.pak', |
38 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_resources_100_percent.
pak', | 46 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_resources_100_percent.
pak', |
| 47 '<(grit_out_dir)/aw_renderer_resources.pak', |
39 ], | 48 ], |
40 'pak_output': '<(PRODUCT_DIR)/android_webview_assets/webviewchromium
.pak', | 49 'pak_output': '<(PRODUCT_DIR)/android_webview_assets/webviewchromium
.pak', |
41 }, | 50 }, |
42 'includes': [ '../build/repack_action.gypi' ], | 51 'includes': [ '../build/repack_action.gypi' ], |
43 }, | 52 }, |
44 { | 53 { |
45 'action_name': 'android_webview_locales_rename_paks', | 54 'action_name': 'android_webview_locales_rename_paks', |
46 'variables': { | 55 'variables': { |
47 'rename_locales': 'tools/webview_locales_rename_paks.py', | 56 'rename_locales': 'tools/webview_locales_rename_paks.py', |
48 }, | 57 }, |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
383 'java_in_dir': 'glue/java', | 392 'java_in_dir': 'glue/java', |
384 'resource_dir': 'apk/java/res', | 393 'resource_dir': 'apk/java/res', |
385 }, | 394 }, |
386 'includes': [ 'apk/system_webview_apk_common.gypi' ], | 395 'includes': [ 'apk/system_webview_apk_common.gypi' ], |
387 }, | 396 }, |
388 ], | 397 ], |
389 'includes': [ | 398 'includes': [ |
390 'android_webview_tests.gypi', | 399 'android_webview_tests.gypi', |
391 ], | 400 ], |
392 } | 401 } |
OLD | NEW |