| 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 'conditions': [ | 5 'conditions': [ |
| 6 ['OS=="linux"', { | 6 ['OS=="linux"', { |
| 7 'variables': { | 7 'variables': { |
| 8 'command': [ | 8 'command': [ |
| 9 '../testing/xvfb.py', | 9 '../testing/xvfb.py', |
| 10 '<(PRODUCT_DIR)', | 10 '<(PRODUCT_DIR)', |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 ], | 197 ], |
| 198 }, | 198 }, |
| 199 }], | 199 }], |
| 200 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { | 200 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { |
| 201 'variables': { | 201 'variables': { |
| 202 'files': [ | 202 'files': [ |
| 203 '<(PRODUCT_DIR)/browser_tests.exe.pdb', | 203 '<(PRODUCT_DIR)/browser_tests.exe.pdb', |
| 204 ], | 204 ], |
| 205 }, | 205 }, |
| 206 }], | 206 }], |
| 207 ['OS=="mac" and asan==1', { |
| 208 'variables': { |
| 209 'files': [ |
| 210 '<(PRODUCT_DIR)/browser_tests.dSYM/', |
| 211 ], |
| 212 }, |
| 213 }], |
| 207 ['OS=="win" and libpeer_target_type=="loadable_module"', { | 214 ['OS=="win" and libpeer_target_type=="loadable_module"', { |
| 208 'variables': { | 215 'variables': { |
| 209 'files': [ | 216 'files': [ |
| 210 '<(PRODUCT_DIR)/libpeerconnection.dll', | 217 '<(PRODUCT_DIR)/libpeerconnection.dll', |
| 211 ], | 218 ], |
| 212 }, | 219 }, |
| 213 }], | 220 }], |
| 214 ['chromeos==1', { | 221 ['chromeos==1', { |
| 215 'variables': { | 222 'variables': { |
| 216 'files': [ | 223 'files': [ |
| (...skipping 15 matching lines...) Expand all Loading... |
| 232 'browser/chromeos/login/test/https_forwarder.py', | 239 'browser/chromeos/login/test/https_forwarder.py', |
| 233 ], | 240 ], |
| 234 }, | 241 }, |
| 235 }], | 242 }], |
| 236 ], | 243 ], |
| 237 'includes': [ | 244 'includes': [ |
| 238 '../base/base.isolate', | 245 '../base/base.isolate', |
| 239 'chrome.isolate', | 246 'chrome.isolate', |
| 240 ], | 247 ], |
| 241 } | 248 } |
| OLD | NEW |