OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 'base.gypi', | 10 'base.gypi', |
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 'export_dependent_settings': [ | 305 'export_dependent_settings': [ |
306 'base', | 306 'base', |
307 ], | 307 ], |
308 'conditions': [ | 308 'conditions': [ |
309 ['toolkit_uses_gtk==1', { | 309 ['toolkit_uses_gtk==1', { |
310 'dependencies': [ | 310 'dependencies': [ |
311 # test_suite initializes GTK. | 311 # test_suite initializes GTK. |
312 '../build/linux/system.gyp:gtk', | 312 '../build/linux/system.gyp:gtk', |
313 ], | 313 ], |
314 }], | 314 }], |
315 ['os_posix==0', { | |
316 'sources!': [ | |
317 'test/scoped_locale.cc', | |
318 'test/scoped_locale.h', | |
319 ], | |
320 }], | |
321 ], | 315 ], |
322 'sources': [ | 316 'sources': [ |
323 'perftimer.cc', | 317 'perftimer.cc', |
324 'test/mock_chrome_application_mac.h', | 318 'test/mock_chrome_application_mac.h', |
325 'test/mock_chrome_application_mac.mm', | 319 'test/mock_chrome_application_mac.mm', |
326 'test/multiprocess_test.cc', | 320 'test/multiprocess_test.cc', |
327 'test/multiprocess_test.h', | 321 'test/multiprocess_test.h', |
328 'test/perf_test_suite.cc', | 322 'test/perf_test_suite.cc', |
329 'test/perf_test_suite.h', | 323 'test/perf_test_suite.h', |
330 'test/scoped_locale.cc', | |
331 'test/scoped_locale.h', | |
332 'test/test_file_util.h', | 324 'test/test_file_util.h', |
333 'test/test_file_util_linux.cc', | 325 'test/test_file_util_linux.cc', |
334 'test/test_file_util_mac.cc', | 326 'test/test_file_util_mac.cc', |
335 'test/test_file_util_posix.cc', | 327 'test/test_file_util_posix.cc', |
336 'test/test_file_util_win.cc', | 328 'test/test_file_util_win.cc', |
337 'test/test_suite.cc', | 329 'test/test_suite.cc', |
338 'test/test_suite.h', | 330 'test/test_suite.h', |
339 'test/test_switches.cc', | 331 'test/test_switches.cc', |
340 'test/test_switches.h', | 332 'test/test_switches.h', |
341 'test/test_timeouts.cc', | 333 'test/test_timeouts.cc', |
342 'test/test_timeouts.h', | 334 'test/test_timeouts.h', |
| 335 'test/test_util.h', |
343 ], | 336 ], |
344 }, | 337 }, |
345 { | 338 { |
346 'target_name': 'test_support_perf', | 339 'target_name': 'test_support_perf', |
347 'type': 'static_library', | 340 'type': 'static_library', |
348 'dependencies': [ | 341 'dependencies': [ |
349 'base', | 342 'base', |
350 '../testing/gtest.gyp:gtest', | 343 '../testing/gtest.gyp:gtest', |
351 ], | 344 ], |
352 'sources': [ | 345 'sources': [ |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
389 ], | 382 ], |
390 }], | 383 }], |
391 ], | 384 ], |
392 } | 385 } |
393 | 386 |
394 # Local Variables: | 387 # Local Variables: |
395 # tab-width:2 | 388 # tab-width:2 |
396 # indent-tabs-mode:nil | 389 # indent-tabs-mode:nil |
397 # End: | 390 # End: |
398 # vim: set expandtab tabstop=2 shiftwidth=2: | 391 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |