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