| 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 ], | 201 ], |
| 202 }, | 202 }, |
| 203 }], | 203 }], |
| 204 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { | 204 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { |
| 205 'variables': { | 205 'variables': { |
| 206 'files': [ | 206 'files': [ |
| 207 '<(PRODUCT_DIR)/browser_tests.exe.pdb', | 207 '<(PRODUCT_DIR)/browser_tests.exe.pdb', |
| 208 ], | 208 ], |
| 209 }, | 209 }, |
| 210 }], | 210 }], |
| 211 ['OS=="mac" and asan==1', { |
| 212 'variables': { |
| 213 'files': [ |
| 214 '<(PRODUCT_DIR)/browser_tests.dSYM/', |
| 215 ], |
| 216 }, |
| 217 }], |
| 211 ['OS=="win" and libpeer_target_type=="loadable_module"', { | 218 ['OS=="win" and libpeer_target_type=="loadable_module"', { |
| 212 'variables': { | 219 'variables': { |
| 213 'files': [ | 220 'files': [ |
| 214 '<(PRODUCT_DIR)/libpeerconnection.dll', | 221 '<(PRODUCT_DIR)/libpeerconnection.dll', |
| 215 ], | 222 ], |
| 216 }, | 223 }, |
| 217 }], | 224 }], |
| 218 ['chromeos==1', { | 225 ['chromeos==1', { |
| 219 'variables': { | 226 'variables': { |
| 220 'files': [ | 227 'files': [ |
| (...skipping 15 matching lines...) Expand all Loading... |
| 236 'browser/chromeos/login/test/https_forwarder.py', | 243 'browser/chromeos/login/test/https_forwarder.py', |
| 237 ], | 244 ], |
| 238 }, | 245 }, |
| 239 }], | 246 }], |
| 240 ], | 247 ], |
| 241 'includes': [ | 248 'includes': [ |
| 242 '../base/base.isolate', | 249 '../base/base.isolate', |
| 243 'chrome.isolate', | 250 'chrome.isolate', |
| 244 ], | 251 ], |
| 245 } | 252 } |
| OLD | NEW |