| 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 'chrome_browser_extensions_test_support_sources': [ | 6 'chrome_browser_extensions_test_support_sources': [ |
| 7 # A list of sources which is shared between different browser tests. | 7 # A list of sources which is shared between different browser tests. |
| 8 'browser/apps/app_browsertest_util.cc', | 8 'browser/apps/app_browsertest_util.cc', |
| 9 'browser/apps/app_browsertest_util.h', | 9 'browser/apps/app_browsertest_util.h', |
| 10 'browser/extensions/browsertest_util.cc', | 10 'browser/extensions/browsertest_util.cc', |
| (...skipping 3112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3123 ], | 3123 ], |
| 3124 'conditions': [ | 3124 'conditions': [ |
| 3125 ['use_x11==1', { | 3125 ['use_x11==1', { |
| 3126 'dependencies': [ | 3126 'dependencies': [ |
| 3127 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 3127 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 3128 ], | 3128 ], |
| 3129 }], | 3129 }], |
| 3130 ], | 3130 ], |
| 3131 }, | 3131 }, |
| 3132 { | 3132 { |
| 3133 'target_name': 'chromedriver_unittests_run', |
| 3134 'type': 'none', |
| 3135 'dependencies': [ |
| 3136 'chromedriver_unittests', |
| 3137 ], |
| 3138 'conditions': [ |
| 3139 ['use_x11 == 1', { |
| 3140 'dependencies': [ |
| 3141 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 3142 ], |
| 3143 }], |
| 3144 ], |
| 3145 'includes': [ |
| 3146 '../build/isolate.gypi', |
| 3147 ], |
| 3148 'sources': [ |
| 3149 'chromedriver_unittests.isolate', |
| 3150 ], |
| 3151 }, |
| 3152 { |
| 3133 'target_name': 'interactive_ui_tests_run', | 3153 'target_name': 'interactive_ui_tests_run', |
| 3134 'type': 'none', | 3154 'type': 'none', |
| 3135 'dependencies': [ | 3155 'dependencies': [ |
| 3136 'interactive_ui_tests', | 3156 'interactive_ui_tests', |
| 3137 ], | 3157 ], |
| 3138 'conditions': [ | 3158 'conditions': [ |
| 3139 ['use_x11 == 1', { | 3159 ['use_x11 == 1', { |
| 3140 'dependencies': [ | 3160 'dependencies': [ |
| 3141 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 3161 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 3142 ], | 3162 ], |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3303 'utility', | 3323 'utility', |
| 3304 ], | 3324 ], |
| 3305 'sources': [ | 3325 'sources': [ |
| 3306 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', | 3326 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', |
| 3307 'tools/service_discovery_sniffer/service_discovery_sniffer.h', | 3327 'tools/service_discovery_sniffer/service_discovery_sniffer.h', |
| 3308 ], | 3328 ], |
| 3309 }] | 3329 }] |
| 3310 }], | 3330 }], |
| 3311 ], # 'conditions' | 3331 ], # 'conditions' |
| 3312 } | 3332 } |
| OLD | NEW |