OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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_apk', | 7 'target_name': 'android_webview_apk', |
8 'type': 'none', | 8 'type': 'none', |
9 'dependencies': [ | 9 'dependencies': [ |
10 'libstandalonelibwebviewchromium', | 10 'libstandalonelibwebviewchromium', |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 '../content/content_shell_and_tests.gyp:content_java_test_support', | 95 '../content/content_shell_and_tests.gyp:content_java_test_support', |
96 '../net/net.gyp:net_java_test_support', | 96 '../net/net.gyp:net_java_test_support', |
97 '../testing/android/on_device_instrumentation.gyp:broker_java', | 97 '../testing/android/on_device_instrumentation.gyp:broker_java', |
98 '../testing/android/on_device_instrumentation.gyp:require_driver_apk', | 98 '../testing/android/on_device_instrumentation.gyp:require_driver_apk', |
99 'android_webview_apk_java', | 99 'android_webview_apk_java', |
100 ], | 100 ], |
101 'variables': { | 101 'variables': { |
102 'apk_name': 'AndroidWebViewTest', | 102 'apk_name': 'AndroidWebViewTest', |
103 'java_in_dir': '../android_webview/javatests', | 103 'java_in_dir': '../android_webview/javatests', |
104 'is_test_apk': 1, | 104 'is_test_apk': 1, |
| 105 'test_type': 'instrumentation', |
| 106 'isolate_file': 'android_webview_test_apk.isolate', |
105 }, | 107 }, |
106 'includes': [ '../build/java_apk.gypi' ], | 108 'includes': [ |
| 109 '../build/java_apk.gypi', |
| 110 '../build/android/test_runner.gypi', |
| 111 ], |
107 }, | 112 }, |
108 { | 113 { |
109 'target_name': 'android_webview_unittests', | 114 'target_name': 'android_webview_unittests', |
110 'type': '<(gtest_target_type)', | 115 'type': '<(gtest_target_type)', |
111 'dependencies': [ | 116 'dependencies': [ |
112 '../base/base.gyp:test_support_base', | 117 '../base/base.gyp:test_support_base', |
113 '../content/content_shell_and_tests.gyp:test_support_content', | 118 '../content/content_shell_and_tests.gyp:test_support_content', |
114 '../net/net.gyp:net_test_support', | 119 '../net/net.gyp:net_test_support', |
115 '../testing/android/native_test.gyp:native_test_native_code', | 120 '../testing/android/native_test.gyp:native_test_native_code', |
116 '../testing/gmock.gyp:gmock', | 121 '../testing/gmock.gyp:gmock', |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 ], | 215 ], |
211 }, | 216 }, |
212 { | 217 { |
213 'target_name': 'libstandalonelibwebviewchromium', | 218 'target_name': 'libstandalonelibwebviewchromium', |
214 'includes': [ | 219 'includes': [ |
215 'libwebviewchromium.gypi', | 220 'libwebviewchromium.gypi', |
216 ], | 221 ], |
217 }, | 222 }, |
218 ], | 223 ], |
219 } | 224 } |
OLD | NEW |