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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 } |
OLD | NEW |