| 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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 'synchronization/lock_unittest.cc', | 232 'synchronization/lock_unittest.cc', |
| 233 'synchronization/waitable_event_unittest.cc', | 233 'synchronization/waitable_event_unittest.cc', |
| 234 'synchronization/waitable_event_watcher_unittest.cc', | 234 'synchronization/waitable_event_watcher_unittest.cc', |
| 235 'sys_info_unittest.cc', | 235 'sys_info_unittest.cc', |
| 236 'sys_string_conversions_mac_unittest.mm', | 236 'sys_string_conversions_mac_unittest.mm', |
| 237 'sys_string_conversions_unittest.cc', | 237 'sys_string_conversions_unittest.cc', |
| 238 'system_monitor/system_monitor_unittest.cc', | 238 'system_monitor/system_monitor_unittest.cc', |
| 239 'task_queue_unittest.cc', | 239 'task_queue_unittest.cc', |
| 240 'task_unittest.cc', | 240 'task_unittest.cc', |
| 241 'template_util_unittest.cc', | 241 'template_util_unittest.cc', |
| 242 'test/trace_event_analyzer_unittest.cc', |
| 242 'threading/non_thread_safe_unittest.cc', | 243 'threading/non_thread_safe_unittest.cc', |
| 243 'threading/platform_thread_unittest.cc', | 244 'threading/platform_thread_unittest.cc', |
| 244 'threading/simple_thread_unittest.cc', | 245 'threading/simple_thread_unittest.cc', |
| 245 'threading/thread_checker_unittest.cc', | 246 'threading/thread_checker_unittest.cc', |
| 246 'threading/thread_collision_warner_unittest.cc', | 247 'threading/thread_collision_warner_unittest.cc', |
| 247 'threading/thread_local_storage_unittest.cc', | 248 'threading/thread_local_storage_unittest.cc', |
| 248 'threading/thread_local_unittest.cc', | 249 'threading/thread_local_unittest.cc', |
| 249 'threading/thread_unittest.cc', | 250 'threading/thread_unittest.cc', |
| 250 'threading/watchdog_unittest.cc', | 251 'threading/watchdog_unittest.cc', |
| 251 'threading/worker_pool_posix_unittest.cc', | 252 'threading/worker_pool_posix_unittest.cc', |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 'test/test_reg_util_win.h', | 432 'test/test_reg_util_win.h', |
| 432 'test/test_suite.cc', | 433 'test/test_suite.cc', |
| 433 'test/test_suite.h', | 434 'test/test_suite.h', |
| 434 'test/test_stub_android.cc', | 435 'test/test_stub_android.cc', |
| 435 'test/test_switches.cc', | 436 'test/test_switches.cc', |
| 436 'test/test_switches.h', | 437 'test/test_switches.h', |
| 437 'test/test_timeouts.cc', | 438 'test/test_timeouts.cc', |
| 438 'test/test_timeouts.h', | 439 'test/test_timeouts.h', |
| 439 'test/thread_test_helper.cc', | 440 'test/thread_test_helper.cc', |
| 440 'test/thread_test_helper.h', | 441 'test/thread_test_helper.h', |
| 442 'test/trace_event_analyzer.cc', |
| 443 'test/trace_event_analyzer.h', |
| 441 ], | 444 ], |
| 442 }, | 445 }, |
| 443 { | 446 { |
| 444 'target_name': 'test_support_perf', | 447 'target_name': 'test_support_perf', |
| 445 'type': 'static_library', | 448 'type': 'static_library', |
| 446 'dependencies': [ | 449 'dependencies': [ |
| 447 'base', | 450 'base', |
| 448 '../testing/gtest.gyp:gtest', | 451 '../testing/gtest.gyp:gtest', |
| 449 ], | 452 ], |
| 450 'sources': [ | 453 'sources': [ |
| (...skipping 30 matching lines...) Expand all Loading... |
| 481 'msvs_settings': { | 484 'msvs_settings': { |
| 482 'VCLinkerTool': { | 485 'VCLinkerTool': { |
| 483 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 486 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 484 }, | 487 }, |
| 485 }, | 488 }, |
| 486 }, | 489 }, |
| 487 ], | 490 ], |
| 488 }], | 491 }], |
| 489 ], | 492 ], |
| 490 } | 493 } |
| OLD | NEW |