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

Side by Side Diff: android_webview/android_webview.gyp

Issue 1270793002: [Android WebView] Put error page files into WebView resources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added RTL direction support Created 5 years, 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | android_webview/common/aw_resource.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | android_webview/common/aw_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698