| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 'type': 'executable', | 58 'type': 'executable', |
| 59 'msvs_guid': '27A30967-4BBA-48D1-8522-CDE95F7B1CEC', | 59 'msvs_guid': '27A30967-4BBA-48D1-8522-CDE95F7B1CEC', |
| 60 'sources': [ | 60 'sources': [ |
| 61 # Infrastructure files. | 61 # Infrastructure files. |
| 62 'test/run_all_unittests.cc', | 62 'test/run_all_unittests.cc', |
| 63 | 63 |
| 64 # Tests. | 64 # Tests. |
| 65 'at_exit_unittest.cc', | 65 'at_exit_unittest.cc', |
| 66 'atomicops_unittest.cc', | 66 'atomicops_unittest.cc', |
| 67 'base64_unittest.cc', | 67 'base64_unittest.cc', |
| 68 'bind_unittest.cc', |
| 68 'bits_unittest.cc', | 69 'bits_unittest.cc', |
| 69 'callback_unittest.cc', | 70 'callback_unittest.cc', |
| 70 'command_line_unittest.cc', | 71 'command_line_unittest.cc', |
| 71 'crypto/encryptor_unittest.cc', | 72 'crypto/encryptor_unittest.cc', |
| 72 'crypto/rsa_private_key_unittest.cc', | 73 'crypto/rsa_private_key_unittest.cc', |
| 73 'crypto/rsa_private_key_nss_unittest.cc', | 74 'crypto/rsa_private_key_nss_unittest.cc', |
| 74 'crypto/secure_hash_unittest.cc', | 75 'crypto/secure_hash_unittest.cc', |
| 75 'crypto/signature_creator_unittest.cc', | 76 'crypto/signature_creator_unittest.cc', |
| 76 'crypto/signature_verifier_unittest.cc', | 77 'crypto/signature_verifier_unittest.cc', |
| 77 'crypto/symmetric_key_unittest.cc', | 78 'crypto/symmetric_key_unittest.cc', |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 'synchronization/cancellation_flag_unittest.cc', | 136 'synchronization/cancellation_flag_unittest.cc', |
| 136 'synchronization/condition_variable_unittest.cc', | 137 'synchronization/condition_variable_unittest.cc', |
| 137 'synchronization/lock_unittest.cc', | 138 'synchronization/lock_unittest.cc', |
| 138 'synchronization/waitable_event_unittest.cc', | 139 'synchronization/waitable_event_unittest.cc', |
| 139 'synchronization/waitable_event_watcher_unittest.cc', | 140 'synchronization/waitable_event_watcher_unittest.cc', |
| 140 'sys_info_unittest.cc', | 141 'sys_info_unittest.cc', |
| 141 'sys_string_conversions_mac_unittest.mm', | 142 'sys_string_conversions_mac_unittest.mm', |
| 142 'sys_string_conversions_unittest.cc', | 143 'sys_string_conversions_unittest.cc', |
| 143 'task_queue_unittest.cc', | 144 'task_queue_unittest.cc', |
| 144 'task_unittest.cc', | 145 'task_unittest.cc', |
| 146 'template_util_unittest.cc', |
| 145 'threading/non_thread_safe_unittest.cc', | 147 'threading/non_thread_safe_unittest.cc', |
| 146 'threading/platform_thread_unittest.cc', | 148 'threading/platform_thread_unittest.cc', |
| 147 'threading/simple_thread_unittest.cc', | 149 'threading/simple_thread_unittest.cc', |
| 148 'threading/thread_checker_unittest.cc', | 150 'threading/thread_checker_unittest.cc', |
| 149 'threading/thread_collision_warner_unittest.cc', | 151 'threading/thread_collision_warner_unittest.cc', |
| 150 'threading/thread_local_storage_unittest.cc', | 152 'threading/thread_local_storage_unittest.cc', |
| 151 'threading/thread_local_unittest.cc', | 153 'threading/thread_local_unittest.cc', |
| 152 'threading/thread_unittest.cc', | 154 'threading/thread_unittest.cc', |
| 153 'threading/watchdog_unittest.cc', | 155 'threading/watchdog_unittest.cc', |
| 154 'threading/worker_pool_posix_unittest.cc', | 156 'threading/worker_pool_posix_unittest.cc', |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 ], | 327 ], |
| 326 }], | 328 }], |
| 327 ], | 329 ], |
| 328 } | 330 } |
| 329 | 331 |
| 330 # Local Variables: | 332 # Local Variables: |
| 331 # tab-width:2 | 333 # tab-width:2 |
| 332 # indent-tabs-mode:nil | 334 # indent-tabs-mode:nil |
| 333 # End: | 335 # End: |
| 334 # vim: set expandtab tabstop=2 shiftwidth=2: | 336 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |