| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 ], | 109 ], |
| 110 }, | 110 }, |
| 111 { | 111 { |
| 112 'target_name': 'base_unittests', | 112 'target_name': 'base_unittests', |
| 113 'type': 'executable', | 113 'type': 'executable', |
| 114 'sources': [ | 114 'sources': [ |
| 115 # Infrastructure files. | 115 # Infrastructure files. |
| 116 'test/run_all_unittests.cc', | 116 'test/run_all_unittests.cc', |
| 117 | 117 |
| 118 # Tests. | 118 # Tests. |
| 119 'android/get_method_id_from_class_name_unittest.cc', |
| 119 'android/scoped_java_ref_unittest.cc', | 120 'android/scoped_java_ref_unittest.cc', |
| 120 'at_exit_unittest.cc', | 121 'at_exit_unittest.cc', |
| 121 'atomicops_unittest.cc', | 122 'atomicops_unittest.cc', |
| 122 'base64_unittest.cc', | 123 'base64_unittest.cc', |
| 123 'bind_unittest.cc', | 124 'bind_unittest.cc', |
| 124 'bind_unittest.nc', | 125 'bind_unittest.nc', |
| 125 'bits_unittest.cc', | 126 'bits_unittest.cc', |
| 126 'build_time_unittest.cc', | 127 'build_time_unittest.cc', |
| 127 'callback_unittest.cc', | 128 'callback_unittest.cc', |
| 128 'callback_unittest.nc', | 129 'callback_unittest.nc', |
| (...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 'msvs_settings': { | 447 'msvs_settings': { |
| 447 'VCLinkerTool': { | 448 'VCLinkerTool': { |
| 448 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 449 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 449 }, | 450 }, |
| 450 }, | 451 }, |
| 451 }, | 452 }, |
| 452 ], | 453 ], |
| 453 }], | 454 }], |
| 454 ], | 455 ], |
| 455 } | 456 } |
| OLD | NEW |