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

Side by Side Diff: android_webview/android_webview.gyp

Issue 1193613002: Convert Android WebView to store locale .pak files as res/raw resources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@no-extractor-init
Patch Set: rebase again Created 5 years, 6 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/android_webview_tests.gypi » ('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',
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 'action': [ 87 'action': [
88 'python', 88 'python',
89 '<(DEPTH)/build/cp.py', 89 '<(DEPTH)/build/cp.py',
90 '<@(_inputs)', 90 '<@(_inputs)',
91 '<@(_outputs)', 91 '<@(_outputs)',
92 ], 92 ],
93 }, 93 },
94 ], 94 ],
95 }, 95 },
96 { 96 {
97 'target_name': 'android_webview_locale_paks',
98 'type': 'none',
99 'variables': {
100 'locale_pak_files': [ '<@(webview_locales_input_paks)' ],
101 },
102 'includes': [
103 'apk/system_webview_locales_paks.gypi',
104 '../build/android/locale_pak_resources.gypi',
105 ],
106 },
107 {
97 'target_name': 'android_webview_strings_grd', 108 'target_name': 'android_webview_strings_grd',
98 'android_unmangled_name': 1, 109 'android_unmangled_name': 1,
99 'type': 'none', 110 'type': 'none',
100 'variables': { 111 'variables': {
101 'grd_file': '../android_webview/java/strings/android_webview_strings.grd ', 112 'grd_file': '../android_webview/java/strings/android_webview_strings.grd ',
102 }, 113 },
103 'includes': [ 114 'includes': [
104 '../build/java_strings_grd.gypi', 115 '../build/java_strings_grd.gypi',
105 ], 116 ],
106 }, 117 },
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 }, 354 },
344 { 355 {
345 'target_name': 'android_webview_java', 356 'target_name': 'android_webview_java',
346 'type': 'none', 357 'type': 'none',
347 'dependencies': [ 358 'dependencies': [
348 '../components/components.gyp:external_video_surface_java', 359 '../components/components.gyp:external_video_surface_java',
349 '../components/components.gyp:navigation_interception_java', 360 '../components/components.gyp:navigation_interception_java',
350 '../components/components.gyp:web_contents_delegate_android_java', 361 '../components/components.gyp:web_contents_delegate_android_java',
351 '../content/content.gyp:content_java', 362 '../content/content.gyp:content_java',
352 '../ui/android/ui_android.gyp:ui_java', 363 '../ui/android/ui_android.gyp:ui_java',
364 'android_webview_locale_paks',
353 'android_webview_strings_grd', 365 'android_webview_strings_grd',
354 ], 366 ],
355 'variables': { 367 'variables': {
356 'java_in_dir': '../android_webview/java', 368 'java_in_dir': '../android_webview/java',
357 'has_java_resources': 1, 369 'has_java_resources': 1,
358 'R_package': 'org.chromium.android_webview', 370 'R_package': 'org.chromium.android_webview',
359 'R_package_relpath': 'org/chromium/android_webview', 371 'R_package_relpath': 'org/chromium/android_webview',
360 }, 372 },
361 'includes': [ '../build/java.gypi' ], 373 'includes': [ '../build/java.gypi' ],
362 }, 374 },
363 { 375 {
364 'target_name': 'system_webview_apk', 376 'target_name': 'system_webview_apk',
365 'variables': { 377 'variables': {
366 'apk_name': 'SystemWebView', 378 'apk_name': 'SystemWebView',
367 'android_sdk_jar': '../third_party/android_platform/webview/frameworks_5 .1.0_r1.jar', 379 'android_sdk_jar': '../third_party/android_platform/webview/frameworks_5 .1.0_r1.jar',
368 'java_in_dir': 'glue/java', 380 'java_in_dir': 'glue/java',
369 'resource_dir': 'apk/java/res', 381 'resource_dir': 'apk/java/res',
370 }, 382 },
371 'includes': [ 'apk/system_webview_apk_common.gypi' ], 383 'includes': [ 'apk/system_webview_apk_common.gypi' ],
372 }, 384 },
373 ], 385 ],
374 'includes': [ 386 'includes': [
375 'android_webview_tests.gypi', 387 'android_webview_tests.gypi',
376 ], 388 ],
377 } 389 }
OLDNEW
« no previous file with comments | « no previous file | android_webview/android_webview_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698