OLD | NEW |
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 'pyautolib_sources': [ | 6 'pyautolib_sources': [ |
7 'app/chrome_command_ids.h', | 7 'app/chrome_command_ids.h', |
8 'app/chrome_dll_resource.h', | 8 'app/chrome_dll_resource.h', |
9 'common/automation_constants.h', | 9 'common/automation_constants.h', |
10 'common/pref_names.cc', | 10 'common/pref_names.cc', |
(...skipping 3210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3221 ], | 3221 ], |
3222 'variables': { | 3222 'variables': { |
3223 'apk_name': 'ChromiumTestShellTest', | 3223 'apk_name': 'ChromiumTestShellTest', |
3224 'java_in_dir': 'android/testshell/javatests', | 3224 'java_in_dir': 'android/testshell/javatests', |
3225 'resource_dir': 'android/testshell/res', | 3225 'resource_dir': 'android/testshell/res', |
3226 'additional_src_dirs': ['android/javatests/src'], | 3226 'additional_src_dirs': ['android/javatests/src'], |
3227 'is_test_apk': 1, | 3227 'is_test_apk': 1, |
3228 }, | 3228 }, |
3229 'includes': [ '../build/java_apk.gypi' ], | 3229 'includes': [ '../build/java_apk.gypi' ], |
3230 }, | 3230 }, |
| 3231 { |
| 3232 'target_name': 'chromium_testshell_uiautomator_tests_java', |
| 3233 'type': 'none', |
| 3234 'variables': { |
| 3235 'java_in_dir': 'android/uiautomator_tests', |
| 3236 }, |
| 3237 'dependencies': [ |
| 3238 '../base/base.gyp:base_java_test_support', |
| 3239 '../third_party/android_tools/android_tools.gyp:uiautomator_jar', |
| 3240 ], |
| 3241 'includes': [ '../build/java.gypi' ], |
| 3242 }, |
| 3243 { |
| 3244 'target_name': 'chromium_testshell_uiautomator_tests', |
| 3245 'type': 'none', |
| 3246 'dependencies': [ |
| 3247 'chromium_testshell_uiautomator_tests_java', |
| 3248 ], |
| 3249 'includes': [ '../build/uiautomator_test.gypi' ], |
| 3250 }, |
3231 ], | 3251 ], |
3232 }], | 3252 }], |
3233 ['test_isolation_mode != "noop"', { | 3253 ['test_isolation_mode != "noop"', { |
3234 'targets': [ | 3254 'targets': [ |
3235 { | 3255 { |
3236 'target_name': 'browser_tests_run', | 3256 'target_name': 'browser_tests_run', |
3237 'type': 'none', | 3257 'type': 'none', |
3238 'dependencies': [ | 3258 'dependencies': [ |
3239 'browser_tests', | 3259 'browser_tests', |
3240 'chrome', | 3260 'chrome', |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3321 # more details. | 3341 # more details. |
3322 'DebugInformationFormat': '3', | 3342 'DebugInformationFormat': '3', |
3323 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/browser_tests.exe.pdb', | 3343 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/browser_tests.exe.pdb', |
3324 }, | 3344 }, |
3325 }, | 3345 }, |
3326 }, | 3346 }, |
3327 ], | 3347 ], |
3328 }], | 3348 }], |
3329 ], # 'conditions' | 3349 ], # 'conditions' |
3330 } | 3350 } |
OLD | NEW |