| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 'type': 'executable', | 102 'type': 'executable', |
| 103 'sources': [ | 103 'sources': [ |
| 104 # Infrastructure files. | 104 # Infrastructure files. |
| 105 'test/run_all_unittests.cc', | 105 'test/run_all_unittests.cc', |
| 106 | 106 |
| 107 # Tests. | 107 # Tests. |
| 108 'at_exit_unittest.cc', | 108 'at_exit_unittest.cc', |
| 109 'atomicops_unittest.cc', | 109 'atomicops_unittest.cc', |
| 110 'base64_unittest.cc', | 110 'base64_unittest.cc', |
| 111 'bind_unittest.cc', | 111 'bind_unittest.cc', |
| 112 'bind_unittest.nc', |
| 112 'bits_unittest.cc', | 113 'bits_unittest.cc', |
| 113 'callback_unittest.cc', | 114 'callback_unittest.cc', |
| 114 'command_line_unittest.cc', | 115 'command_line_unittest.cc', |
| 115 'cpu_unittest.cc', | 116 'cpu_unittest.cc', |
| 116 'debug/leak_tracker_unittest.cc', | 117 'debug/leak_tracker_unittest.cc', |
| 117 'debug/stack_trace_unittest.cc', | 118 'debug/stack_trace_unittest.cc', |
| 118 'debug/trace_event_unittest.cc', | 119 'debug/trace_event_unittest.cc', |
| 119 'debug/trace_event_win_unittest.cc', | 120 'debug/trace_event_win_unittest.cc', |
| 120 'dir_reader_posix_unittest.cc', | 121 'dir_reader_posix_unittest.cc', |
| 121 'environment_unittest.cc', | 122 'environment_unittest.cc', |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 'base', | 232 'base', |
| 232 'base_i18n', | 233 'base_i18n', |
| 233 'base_static', | 234 'base_static', |
| 234 'test_support_base', | 235 'test_support_base', |
| 235 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat
ions', | 236 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat
ions', |
| 236 '../testing/gmock.gyp:gmock', | 237 '../testing/gmock.gyp:gmock', |
| 237 '../testing/gtest.gyp:gtest', | 238 '../testing/gtest.gyp:gtest', |
| 238 '../third_party/icu/icu.gyp:icui18n', | 239 '../third_party/icu/icu.gyp:icui18n', |
| 239 '../third_party/icu/icu.gyp:icuuc', | 240 '../third_party/icu/icu.gyp:icuuc', |
| 240 ], | 241 ], |
| 242 'includes': ['../build/nocompile.gypi'], |
| 243 'variables': { |
| 244 # TODO(ajwong): Is there a way to autodetect this? |
| 245 'module_dir': 'base' |
| 246 }, |
| 241 'conditions': [ | 247 'conditions': [ |
| 242 ['toolkit_uses_gtk==1', { | 248 ['toolkit_uses_gtk==1', { |
| 243 'sources!': [ | 249 'sources!': [ |
| 244 'file_version_info_unittest.cc', | 250 'file_version_info_unittest.cc', |
| 245 ], | 251 ], |
| 246 'sources': [ | 252 'sources': [ |
| 247 'nix/xdg_util_unittest.cc', | 253 'nix/xdg_util_unittest.cc', |
| 248 ], | 254 ], |
| 249 'conditions': [ | 255 'conditions': [ |
| 250 [ 'linux_use_tcmalloc==1', { | 256 [ 'linux_use_tcmalloc==1', { |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 393 'msvs_settings': { | 399 'msvs_settings': { |
| 394 'VCLinkerTool': { | 400 'VCLinkerTool': { |
| 395 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 401 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 396 }, | 402 }, |
| 397 }, | 403 }, |
| 398 }, | 404 }, |
| 399 ], | 405 ], |
| 400 }], | 406 }], |
| 401 ], | 407 ], |
| 402 } | 408 } |
| OLD | NEW |