| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 'type': 'executable', | 108 'type': 'executable', |
| 109 'sources': [ | 109 'sources': [ |
| 110 # Infrastructure files. | 110 # Infrastructure files. |
| 111 'test/run_all_unittests.cc', | 111 'test/run_all_unittests.cc', |
| 112 | 112 |
| 113 # Tests. | 113 # Tests. |
| 114 'at_exit_unittest.cc', | 114 'at_exit_unittest.cc', |
| 115 'atomicops_unittest.cc', | 115 'atomicops_unittest.cc', |
| 116 'base64_unittest.cc', | 116 'base64_unittest.cc', |
| 117 'bind_unittest.cc', | 117 'bind_unittest.cc', |
| 118 'bind_unittest.nc', |
| 118 'bits_unittest.cc', | 119 'bits_unittest.cc', |
| 119 'callback_unittest.cc', | 120 'callback_unittest.cc', |
| 120 'command_line_unittest.cc', | 121 'command_line_unittest.cc', |
| 121 'cpu_unittest.cc', | 122 'cpu_unittest.cc', |
| 122 'debug/leak_tracker_unittest.cc', | 123 'debug/leak_tracker_unittest.cc', |
| 123 'debug/stack_trace_unittest.cc', | 124 'debug/stack_trace_unittest.cc', |
| 124 'debug/trace_event_unittest.cc', | 125 'debug/trace_event_unittest.cc', |
| 125 'debug/trace_event_win_unittest.cc', | 126 'debug/trace_event_win_unittest.cc', |
| 126 'dir_reader_posix_unittest.cc', | 127 'dir_reader_posix_unittest.cc', |
| 127 'environment_unittest.cc', | 128 'environment_unittest.cc', |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 'base', | 238 'base', |
| 238 'base_i18n', | 239 'base_i18n', |
| 239 'base_static', | 240 'base_static', |
| 240 'test_support_base', | 241 'test_support_base', |
| 241 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat
ions', | 242 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat
ions', |
| 242 '../testing/gmock.gyp:gmock', | 243 '../testing/gmock.gyp:gmock', |
| 243 '../testing/gtest.gyp:gtest', | 244 '../testing/gtest.gyp:gtest', |
| 244 '../third_party/icu/icu.gyp:icui18n', | 245 '../third_party/icu/icu.gyp:icui18n', |
| 245 '../third_party/icu/icu.gyp:icuuc', | 246 '../third_party/icu/icu.gyp:icuuc', |
| 246 ], | 247 ], |
| 248 'includes': ['../build/nocompile.gypi'], |
| 249 'variables': { |
| 250 # TODO(ajwong): Is there a way to autodetect this? |
| 251 'module_dir': 'base' |
| 252 }, |
| 247 'conditions': [ | 253 'conditions': [ |
| 248 ['toolkit_uses_gtk==1', { | 254 ['toolkit_uses_gtk==1', { |
| 249 'sources!': [ | 255 'sources!': [ |
| 250 'file_version_info_unittest.cc', | 256 'file_version_info_unittest.cc', |
| 251 ], | 257 ], |
| 252 'sources': [ | 258 'sources': [ |
| 253 'nix/xdg_util_unittest.cc', | 259 'nix/xdg_util_unittest.cc', |
| 254 ], | 260 ], |
| 255 'conditions': [ | 261 'conditions': [ |
| 256 [ 'linux_use_tcmalloc==1', { | 262 [ 'linux_use_tcmalloc==1', { |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 'msvs_settings': { | 407 'msvs_settings': { |
| 402 'VCLinkerTool': { | 408 'VCLinkerTool': { |
| 403 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 409 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 404 }, | 410 }, |
| 405 }, | 411 }, |
| 406 }, | 412 }, |
| 407 ], | 413 ], |
| 408 }], | 414 }], |
| 409 ], | 415 ], |
| 410 } | 416 } |
| OLD | NEW |