Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 'targets': [ | 5 'targets': [ |
| 6 { | 6 { |
| 7 'target_name': 'android_webview_shell_apk', | 7 'target_name': 'android_webview_shell_apk', |
|
Yoland Yan(Google)
2015/09/23 19:51:51
should the name also change to system_webview_shel
| |
| 8 'type': 'none', | 8 'type': 'none', |
| 9 'variables': { | |
| 10 'apk_name': 'AndroidWebViewShell', | |
|
Yoland Yan(Google)
2015/09/23 19:51:51
ditto
| |
| 11 'java_in_dir': 'tools/system_webview_shell/apk', | |
| 12 'resource_dir': 'tools/system_webview_shell/apk/res', | |
| 13 'android_manifest_path': 'tools/system_webview_shell/apk/AndroidManifest .xml', # for lint | |
| 14 }, | |
| 15 'includes': [ | |
| 16 '../build/java_apk.gypi', | |
| 17 ], | |
| 18 }, | |
| 19 { | |
| 20 # android_webview_apk creates a .jar as a side effect. Any java | |
| 21 # targets that need that .jar in their classpath should depend on this | |
| 22 # target. For more details see the content_shell_apk_java target. | |
| 23 'target_name': 'android_webview_shell_apk_java', | |
|
Yoland Yan(Google)
2015/09/23 19:51:51
ditto
| |
| 24 'type': 'none', | |
| 25 'dependencies': [ | |
| 26 'android_webview_shell_apk', | |
| 27 ], | |
| 28 'includes': [ '../build/apk_fake_jar.gypi' ], | |
| 29 }, | |
| 30 { | |
| 31 'target_name': 'android_webview_shell_page_cycler_apk', | |
|
Yoland Yan(Google)
2015/09/23 19:51:51
ditto
| |
| 32 'type': 'none', | |
| 9 'dependencies': [ | 33 'dependencies': [ |
| 10 '../base/base.gyp:base_java_test_support', | 34 '../base/base.gyp:base_java_test_support', |
| 35 '../testing/android/on_device_instrumentation.gyp:broker_java', | |
| 36 '../testing/android/on_device_instrumentation.gyp:require_driver_apk', | |
| 37 'android_webview_shell_apk_java', | |
| 11 ], | 38 ], |
| 12 'variables': { | 39 'variables': { |
| 13 'apk_name': 'AndroidWebViewShell', | 40 'apk_name': 'AndroidWebViewShellPageCycler', |
|
Yoland Yan(Google)
2015/09/23 19:51:51
ditto
| |
| 14 'java_in_dir': 'tools/WebViewShell', | 41 'java_in_dir': '../android_webview/tools/system_webview_shell/page_cycle r', |
| 15 'resource_dir': 'tools/WebViewShell/res', | |
| 16 'is_test_apk': 1, | 42 'is_test_apk': 1, |
| 17 'test_type': 'instrumentation', | 43 'test_type': 'instrumentation', |
| 18 'isolate_file': 'android_webview_shell_test_apk.isolate', | 44 'android_manifest_path': 'tools/system_webview_shell/page_cycler/Android Manifest.xml', |
| 19 'android_manifest_path': 'tools/WebViewShell/AndroidManifest.xml', # for lint | |
| 20 }, | 45 }, |
| 21 'includes': [ | 46 'includes': [ |
| 22 '../build/java_apk.gypi', | 47 '../build/java_apk.gypi', |
| 23 '../build/android/test_runner.gypi', | 48 '../build/android/test_runner.gypi', |
| 24 ], | 49 ], |
| 25 }, | 50 }, |
| 51 { | |
| 52 'target_name': 'android_webview_shell_layout_test_apk', | |
|
Yoland Yan(Google)
2015/09/23 19:51:51
ditto
| |
| 53 'type': 'none', | |
| 54 'dependencies': [ | |
| 55 '../base/base.gyp:base_java_test_support', | |
| 56 '../testing/android/on_device_instrumentation.gyp:broker_java', | |
| 57 '../testing/android/on_device_instrumentation.gyp:require_driver_apk', | |
| 58 'android_webview_shell_apk_java', | |
| 59 ], | |
| 60 'variables': { | |
| 61 'apk_name': 'AndroidWebViewShellLayoutTest', | |
|
Yoland Yan(Google)
2015/09/23 19:51:51
ditto
| |
| 62 'java_in_dir': '../android_webview/tools/system_webview_shell/layout_tes ts', | |
| 63 'is_test_apk': 1, | |
| 64 'test_type': 'instrumentation', | |
| 65 'isolate_file': 'android_webview_shell_test_apk.isolate', | |
| 66 'android_manifest_path': 'tools/system_webview_shell/layout_tests/Androi dManifest.xml', | |
| 67 }, | |
| 68 'includes': [ | |
| 69 '../build/java_apk.gypi', | |
| 70 '../build/android/test_runner.gypi', | |
| 71 ] | |
| 72 }, | |
| 26 ], | 73 ], |
| 27 } | 74 } |
| OLD | NEW |