| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 'sources': [ | 120 'sources': [ |
| 121 # Infrastructure files. | 121 # Infrastructure files. |
| 122 'test/run_all_unittests.cc', | 122 'test/run_all_unittests.cc', |
| 123 | 123 |
| 124 # Tests. | 124 # Tests. |
| 125 'android/jni_android_unittest.cc', | 125 'android/jni_android_unittest.cc', |
| 126 'android/scoped_java_ref_unittest.cc', | 126 'android/scoped_java_ref_unittest.cc', |
| 127 'at_exit_unittest.cc', | 127 'at_exit_unittest.cc', |
| 128 'atomicops_unittest.cc', | 128 'atomicops_unittest.cc', |
| 129 'base64_unittest.cc', | 129 'base64_unittest.cc', |
| 130 'bind_helpers_unittest.cc', |
| 130 'bind_unittest.cc', | 131 'bind_unittest.cc', |
| 131 'bind_unittest.nc', | 132 'bind_unittest.nc', |
| 132 'bits_unittest.cc', | 133 'bits_unittest.cc', |
| 133 'build_time_unittest.cc', | 134 'build_time_unittest.cc', |
| 134 'callback_unittest.cc', | 135 'callback_unittest.cc', |
| 135 'callback_unittest.nc', | 136 'callback_unittest.nc', |
| 136 'cancelable_callback_unittest.cc', | 137 'cancelable_callback_unittest.cc', |
| 137 'command_line_unittest.cc', | 138 'command_line_unittest.cc', |
| 138 'cpu_unittest.cc', | 139 'cpu_unittest.cc', |
| 139 'debug/leak_tracker_unittest.cc', | 140 'debug/leak_tracker_unittest.cc', |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 'stringprintf_unittest.cc', | 213 'stringprintf_unittest.cc', |
| 213 'synchronization/cancellation_flag_unittest.cc', | 214 'synchronization/cancellation_flag_unittest.cc', |
| 214 'synchronization/condition_variable_unittest.cc', | 215 'synchronization/condition_variable_unittest.cc', |
| 215 'synchronization/lock_unittest.cc', | 216 'synchronization/lock_unittest.cc', |
| 216 'synchronization/waitable_event_unittest.cc', | 217 'synchronization/waitable_event_unittest.cc', |
| 217 'synchronization/waitable_event_watcher_unittest.cc', | 218 'synchronization/waitable_event_watcher_unittest.cc', |
| 218 'sys_info_unittest.cc', | 219 'sys_info_unittest.cc', |
| 219 'sys_string_conversions_mac_unittest.mm', | 220 'sys_string_conversions_mac_unittest.mm', |
| 220 'sys_string_conversions_unittest.cc', | 221 'sys_string_conversions_unittest.cc', |
| 221 'system_monitor/system_monitor_unittest.cc', | 222 'system_monitor/system_monitor_unittest.cc', |
| 222 'task_unittest.cc', | |
| 223 'template_util_unittest.cc', | 223 'template_util_unittest.cc', |
| 224 'test/trace_event_analyzer_unittest.cc', | 224 'test/trace_event_analyzer_unittest.cc', |
| 225 'threading/non_thread_safe_unittest.cc', | 225 'threading/non_thread_safe_unittest.cc', |
| 226 'threading/platform_thread_unittest.cc', | 226 'threading/platform_thread_unittest.cc', |
| 227 'threading/sequenced_worker_pool_unittest.cc', | 227 'threading/sequenced_worker_pool_unittest.cc', |
| 228 'threading/simple_thread_unittest.cc', | 228 'threading/simple_thread_unittest.cc', |
| 229 'threading/thread_checker_unittest.cc', | 229 'threading/thread_checker_unittest.cc', |
| 230 'threading/thread_collision_warner_unittest.cc', | 230 'threading/thread_collision_warner_unittest.cc', |
| 231 'threading/thread_local_storage_unittest.cc', | 231 'threading/thread_local_storage_unittest.cc', |
| 232 'threading/thread_local_unittest.cc', | 232 'threading/thread_local_unittest.cc', |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 471 'msvs_settings': { | 471 'msvs_settings': { |
| 472 'VCLinkerTool': { | 472 'VCLinkerTool': { |
| 473 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 473 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 474 }, | 474 }, |
| 475 }, | 475 }, |
| 476 }, | 476 }, |
| 477 ], | 477 ], |
| 478 }], | 478 }], |
| 479 ], | 479 ], |
| 480 } | 480 } |
| OLD | NEW |