| 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 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 'synchronization/lock_unittest.cc', | 233 'synchronization/lock_unittest.cc', |
| 234 'synchronization/waitable_event_unittest.cc', | 234 'synchronization/waitable_event_unittest.cc', |
| 235 'synchronization/waitable_event_watcher_unittest.cc', | 235 'synchronization/waitable_event_watcher_unittest.cc', |
| 236 'sys_info_unittest.cc', | 236 'sys_info_unittest.cc', |
| 237 'sys_string_conversions_mac_unittest.mm', | 237 'sys_string_conversions_mac_unittest.mm', |
| 238 'sys_string_conversions_unittest.cc', | 238 'sys_string_conversions_unittest.cc', |
| 239 'system_monitor/system_monitor_unittest.cc', | 239 'system_monitor/system_monitor_unittest.cc', |
| 240 'task_queue_unittest.cc', | 240 'task_queue_unittest.cc', |
| 241 'task_unittest.cc', | 241 'task_unittest.cc', |
| 242 'template_util_unittest.cc', | 242 'template_util_unittest.cc', |
| 243 'test/trace_event_analyzer_unittest.cc', | |
| 244 'threading/non_thread_safe_unittest.cc', | 243 'threading/non_thread_safe_unittest.cc', |
| 245 'threading/platform_thread_unittest.cc', | 244 'threading/platform_thread_unittest.cc', |
| 246 'threading/simple_thread_unittest.cc', | 245 'threading/simple_thread_unittest.cc', |
| 247 'threading/thread_checker_unittest.cc', | 246 'threading/thread_checker_unittest.cc', |
| 248 'threading/thread_collision_warner_unittest.cc', | 247 'threading/thread_collision_warner_unittest.cc', |
| 249 'threading/thread_local_storage_unittest.cc', | 248 'threading/thread_local_storage_unittest.cc', |
| 250 'threading/thread_local_unittest.cc', | 249 'threading/thread_local_unittest.cc', |
| 251 'threading/thread_unittest.cc', | 250 'threading/thread_unittest.cc', |
| 252 'threading/watchdog_unittest.cc', | 251 'threading/watchdog_unittest.cc', |
| 253 'threading/worker_pool_posix_unittest.cc', | 252 'threading/worker_pool_posix_unittest.cc', |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 'test/test_reg_util_win.h', | 437 'test/test_reg_util_win.h', |
| 439 'test/test_suite.cc', | 438 'test/test_suite.cc', |
| 440 'test/test_suite.h', | 439 'test/test_suite.h', |
| 441 'test/test_stub_android.cc', | 440 'test/test_stub_android.cc', |
| 442 'test/test_switches.cc', | 441 'test/test_switches.cc', |
| 443 'test/test_switches.h', | 442 'test/test_switches.h', |
| 444 'test/test_timeouts.cc', | 443 'test/test_timeouts.cc', |
| 445 'test/test_timeouts.h', | 444 'test/test_timeouts.h', |
| 446 'test/thread_test_helper.cc', | 445 'test/thread_test_helper.cc', |
| 447 'test/thread_test_helper.h', | 446 'test/thread_test_helper.h', |
| 448 'test/trace_event_analyzer.cc', | |
| 449 'test/trace_event_analyzer.h', | |
| 450 ], | 447 ], |
| 451 }, | 448 }, |
| 452 { | 449 { |
| 453 'target_name': 'test_support_perf', | 450 'target_name': 'test_support_perf', |
| 454 'type': 'static_library', | 451 'type': 'static_library', |
| 455 'dependencies': [ | 452 'dependencies': [ |
| 456 'base', | 453 'base', |
| 457 '../testing/gtest.gyp:gtest', | 454 '../testing/gtest.gyp:gtest', |
| 458 ], | 455 ], |
| 459 'sources': [ | 456 'sources': [ |
| (...skipping 30 matching lines...) Expand all Loading... |
| 490 'msvs_settings': { | 487 'msvs_settings': { |
| 491 'VCLinkerTool': { | 488 'VCLinkerTool': { |
| 492 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 489 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 493 }, | 490 }, |
| 494 }, | 491 }, |
| 495 }, | 492 }, |
| 496 ], | 493 ], |
| 497 }], | 494 }], |
| 498 ], | 495 ], |
| 499 } | 496 } |
| OLD | NEW |