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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 63373003: [chromedriver] Add a WebView shell app for testing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'chromedriver_unittest_sources': [ 6 'chromedriver_unittest_sources': [
7 'test/chromedriver/capabilities_unittest.cc', 7 'test/chromedriver/capabilities_unittest.cc',
8 'test/chromedriver/chrome/chrome_finder_unittest.cc', 8 'test/chromedriver/chrome/chrome_finder_unittest.cc',
9 'test/chromedriver/chrome/console_logger_unittest.cc', 9 'test/chromedriver/chrome/console_logger_unittest.cc',
10 'test/chromedriver/chrome/device_manager_unittest.cc', 10 'test/chromedriver/chrome/device_manager_unittest.cc',
(...skipping 3102 matching lines...) Expand 10 before | Expand all | Expand 10 after
3113 'variables': { 3113 'variables': {
3114 'apk_name': 'ChromiumTestShellTest', 3114 'apk_name': 'ChromiumTestShellTest',
3115 'java_in_dir': 'android/testshell/javatests', 3115 'java_in_dir': 'android/testshell/javatests',
3116 'resource_dir': 'android/testshell/res', 3116 'resource_dir': 'android/testshell/res',
3117 'additional_src_dirs': ['android/javatests/src'], 3117 'additional_src_dirs': ['android/javatests/src'],
3118 'is_test_apk': 1, 3118 'is_test_apk': 1,
3119 }, 3119 },
3120 'includes': [ '../build/java_apk.gypi' ], 3120 'includes': [ '../build/java_apk.gypi' ],
3121 }, 3121 },
3122 { 3122 {
3123 'target_name': 'chromedriver_webview_shell_apk',
3124 'type': 'none',
3125 'variables': {
3126 'apk_name': 'ChromeDriverWebViewShell',
3127 'java_in_dir': 'test/chromedriver/test/webview_shell/java',
3128 'resource_dir': 'test/chromedriver/test/webview_shell/java/res',
3129 },
3130 'includes': [ '../build/java_apk.gypi' ],
3131 },
3132 {
3123 'target_name': 'chromium_testshell_uiautomator_tests_java', 3133 'target_name': 'chromium_testshell_uiautomator_tests_java',
3124 'type': 'none', 3134 'type': 'none',
3125 'variables': { 3135 'variables': {
3126 'java_in_dir': 'android/uiautomator_tests', 3136 'java_in_dir': 'android/uiautomator_tests',
3127 }, 3137 },
3128 'dependencies': [ 3138 'dependencies': [
3129 '../base/base.gyp:base_java_test_support', 3139 '../base/base.gyp:base_java_test_support',
3130 '../third_party/android_tools/android_tools.gyp:uiautomator_jar', 3140 '../third_party/android_tools/android_tools.gyp:uiautomator_jar',
3131 ], 3141 ],
3132 'includes': [ '../build/java.gypi' ], 3142 'includes': [ '../build/java.gypi' ],
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
3248 'utility', 3258 'utility',
3249 ], 3259 ],
3250 'sources': [ 3260 'sources': [
3251 'tools/service_discovery_sniffer/service_discovery_sniffer.h', 3261 'tools/service_discovery_sniffer/service_discovery_sniffer.h',
3252 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', 3262 'tools/service_discovery_sniffer/service_discovery_sniffer.cc',
3253 ], 3263 ],
3254 }] 3264 }]
3255 }], 3265 }],
3256 ], # 'conditions' 3266 ], # 'conditions'
3257 } 3267 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698