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

Side by Side Diff: android_webview/android_webview.gyp

Issue 1040653003: Remove support for jarjar-ing layout.xml files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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/build/jarjar-rules.txt » ('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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 'variables': { 386 'variables': {
387 'apk_name': 'SystemWebView', 387 'apk_name': 'SystemWebView',
388 'android_sdk_jar': '../third_party/android_platform/webview/framewor ks_5.1.0_r1.jar', 388 'android_sdk_jar': '../third_party/android_platform/webview/framewor ks_5.1.0_r1.jar',
389 'android_manifest_path': 'apk/java/AndroidManifest.xml', 389 'android_manifest_path': 'apk/java/AndroidManifest.xml',
390 'java_in_dir': 'glue/java', 390 'java_in_dir': 'glue/java',
391 'resource_dir': 'apk/java/res', 391 'resource_dir': 'apk/java/res',
392 }, 392 },
393 'includes': [ 'apk/system_webview_apk_common.gypi' ], 393 'includes': [ 'apk/system_webview_apk_common.gypi' ],
394 }, 394 },
395 ], 395 ],
396 }, { # android_webview_build==1
397 'targets': [
398 {
399 'target_name': 'android_webview_jarjar_ui_resources',
400 'android_unmangled_name': 1,
401 'type': 'none',
402 'variables': {
403 'res_dir': '../ui/android/java/res',
404 'rules_file': '../android_webview/build/jarjar-rules.txt',
405 },
406 'includes': ['../android_webview/build/jarjar_resources.gypi'],
407 },
408 {
409 'target_name': 'android_webview_jarjar_content_resources',
410 'android_unmangled_name': 1,
411 'type': 'none',
412 'variables': {
413 'res_dir': '../content/public/android/java/res',
414 'rules_file': '../android_webview/build/jarjar-rules.txt',
415 },
416 'includes': ['../android_webview/build/jarjar_resources.gypi'],
417 },
418 {
419 'target_name': 'android_webview_jarjar_web_contents_delegate_android_r esources',
420 'android_unmangled_name': 1,
421 'type': 'none',
422 'variables': {
423 'res_dir': '../components/web_contents_delegate_android/android/java /res',
424 'rules_file': '../android_webview/build/jarjar-rules.txt',
425 },
426 'includes': ['../android_webview/build/jarjar_resources.gypi'],
427 },
428 {
429 'target_name': 'android_webview_resources',
430 'type': 'none',
431 'android_unmangled_name': 1,
432 'dependencies': [
433 '../content/content.gyp:content_strings_grd',
434 '../ui/android/ui_android.gyp:ui_strings_grd',
435 'android_webview_jarjar_content_resources',
436 'android_webview_jarjar_ui_resources',
437 'android_webview_jarjar_web_contents_delegate_android_resources',
438 'android_webview_strings_grd',
439 ],
440 },
441 ],
442 }], 396 }],
443 ], 397 ],
444 } 398 }
OLDNEW
« no previous file with comments | « no previous file | android_webview/build/jarjar-rules.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698