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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 ], | 189 ], |
190 }, | 190 }, |
191 }], | 191 }], |
192 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { | 192 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { |
193 'variables': { | 193 'variables': { |
194 'files': [ | 194 'files': [ |
195 '<(PRODUCT_DIR)/browser_tests.exe.pdb', | 195 '<(PRODUCT_DIR)/browser_tests.exe.pdb', |
196 ], | 196 ], |
197 }, | 197 }, |
198 }], | 198 }], |
| 199 ['OS=="mac" and asan==1', { |
| 200 'variables': { |
| 201 'files': [ |
| 202 '<(PRODUCT_DIR)/browser_tests.dSYM/', |
| 203 ], |
| 204 }, |
| 205 }], |
199 ['OS=="win" and libpeer_target_type=="loadable_module"', { | 206 ['OS=="win" and libpeer_target_type=="loadable_module"', { |
200 'variables': { | 207 'variables': { |
201 'files': [ | 208 'files': [ |
202 '<(PRODUCT_DIR)/libpeerconnection.dll', | 209 '<(PRODUCT_DIR)/libpeerconnection.dll', |
203 ], | 210 ], |
204 }, | 211 }, |
205 }], | 212 }], |
206 ['chromeos==1', { | 213 ['chromeos==1', { |
207 'variables': { | 214 'variables': { |
208 'files': [ | 215 'files': [ |
(...skipping 15 matching lines...) Expand all Loading... |
224 'browser/chromeos/login/test/https_forwarder.py', | 231 'browser/chromeos/login/test/https_forwarder.py', |
225 ], | 232 ], |
226 }, | 233 }, |
227 }], | 234 }], |
228 ], | 235 ], |
229 'includes': [ | 236 'includes': [ |
230 '../base/base.isolate', | 237 '../base/base.isolate', |
231 'chrome.isolate', | 238 'chrome.isolate', |
232 ], | 239 ], |
233 } | 240 } |
OLD | NEW |