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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 12086059: Add interactive_ui_tests_run. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: traced on linux, mac and windows Created 7 years, 8 months 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 '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 3228 matching lines...) Expand 10 before | Expand all | Expand 10 after
3239 ], 3239 ],
3240 'includes': [ 3240 'includes': [
3241 '../build/isolate.gypi', 3241 '../build/isolate.gypi',
3242 'browser_tests.isolate', 3242 'browser_tests.isolate',
3243 ], 3243 ],
3244 'sources': [ 3244 'sources': [
3245 'browser_tests.isolate', 3245 'browser_tests.isolate',
3246 ], 3246 ],
3247 }, 3247 },
3248 { 3248 {
3249 'target_name': 'interactive_ui_tests_run',
3250 'type': 'none',
3251 'dependencies': [
3252 'interactive_ui_tests',
3253 ],
3254 'conditions': [
3255 ['use_x11 == 1', {
3256 'dependencies': [
3257 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
3258 ],
3259 }],
3260 ],
3261 'includes': [
3262 '../build/isolate.gypi',
3263 'interactive_ui_tests.isolate',
3264 ],
3265 'sources': [
3266 'interactive_ui_tests.isolate',
3267 ],
3268 },
3269 {
3249 'target_name': 'sync_integration_tests_run', 3270 'target_name': 'sync_integration_tests_run',
3250 'type': 'none', 3271 'type': 'none',
3251 'dependencies': [ 3272 'dependencies': [
3252 'sync_integration_tests', 3273 'sync_integration_tests',
3253 ], 3274 ],
3254 'conditions': [ 3275 'conditions': [
3255 ['use_x11 == 1', { 3276 ['use_x11 == 1', {
3256 'dependencies': [ 3277 'dependencies': [
3257 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 3278 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
3258 ], 3279 ],
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
3297 # more details. 3318 # more details.
3298 'DebugInformationFormat': '3', 3319 'DebugInformationFormat': '3',
3299 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/browser_tests.exe.pdb', 3320 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/browser_tests.exe.pdb',
3300 }, 3321 },
3301 }, 3322 },
3302 }, 3323 },
3303 ], 3324 ],
3304 }], 3325 }],
3305 ], # 'conditions' 3326 ], # 'conditions'
3306 } 3327 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698