Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(328)

Side by Side Diff: base/base.gyp

Issue 3035062: Revert 55400 - Cleanup in base. This moves the implementation (and a bunch of... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/DEPS ('k') | base/base_switches.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 'i18n/word_iterator.cc', 48 'i18n/word_iterator.cc',
49 'i18n/word_iterator.h', 49 'i18n/word_iterator.h',
50 ], 50 ],
51 }, 51 },
52 { 52 {
53 'target_name': 'base_unittests', 53 'target_name': 'base_unittests',
54 'type': 'executable', 54 'type': 'executable',
55 'msvs_guid': '27A30967-4BBA-48D1-8522-CDE95F7B1CEC', 55 'msvs_guid': '27A30967-4BBA-48D1-8522-CDE95F7B1CEC',
56 'sources': [ 56 'sources': [
57 # Infrastructure files. 57 # Infrastructure files.
58 'multiprocess_test.h',
58 'test/run_all_unittests.cc', 59 'test/run_all_unittests.cc',
60 'test/test_suite.h',
59 61
60 # Tests. 62 # Tests.
61 'at_exit_unittest.cc', 63 'at_exit_unittest.cc',
62 'atomicops_unittest.cc', 64 'atomicops_unittest.cc',
63 'base64_unittest.cc', 65 'base64_unittest.cc',
64 'bits_unittest.cc', 66 'bits_unittest.cc',
65 'callback_unittest.cc', 67 'callback_unittest.cc',
66 'cancellation_flag_unittest.cc', 68 'cancellation_flag_unittest.cc',
67 'command_line_unittest.cc', 69 'command_line_unittest.cc',
68 'condition_variable_unittest.cc', 70 'condition_variable_unittest.cc',
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 'worker_pool_unittest.cc', 162 'worker_pool_unittest.cc',
161 ], 163 ],
162 'include_dirs': [ 164 'include_dirs': [
163 # word_iterator.h (used by word_iterator_unittest.cc) leaks an ICU 165 # word_iterator.h (used by word_iterator_unittest.cc) leaks an ICU
164 # #include for unicode/uchar.h. This should probably be cleaned up. 166 # #include for unicode/uchar.h. This should probably be cleaned up.
165 '../third_party/icu/public/common', 167 '../third_party/icu/public/common',
166 ], 168 ],
167 'dependencies': [ 169 'dependencies': [
168 'base', 170 'base',
169 'base_i18n', 171 'base_i18n',
170 'test_support_base',
171 '../testing/gmock.gyp:gmock', 172 '../testing/gmock.gyp:gmock',
172 '../testing/gtest.gyp:gtest', 173 '../testing/gtest.gyp:gtest',
173 ], 174 ],
174 'conditions': [ 175 'conditions': [
175 ['OS == "linux" or OS == "freebsd" or OS == "openbsd" or OS == "solaris" ', { 176 ['OS == "linux" or OS == "freebsd" or OS == "openbsd" or OS == "solaris" ', {
176 'sources!': [ 177 'sources!': [
177 'file_version_info_unittest.cc', 178 'file_version_info_unittest.cc',
178 'worker_pool_linux_unittest.cc', 179 'worker_pool_linux_unittest.cc',
179 ], 180 ],
180 'sources': [ 181 'sources': [
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 'wmi_util_unittest.cc', 218 'wmi_util_unittest.cc',
218 ], 219 ],
219 }], 220 }],
220 ], 221 ],
221 }, 222 },
222 { 223 {
223 'target_name': 'test_support_base', 224 'target_name': 'test_support_base',
224 'type': '<(library)', 225 'type': '<(library)',
225 'dependencies': [ 226 'dependencies': [
226 'base', 227 'base',
227 '../testing/gmock.gyp:gmock',
228 '../testing/gtest.gyp:gtest',
229 ], 228 ],
230 'sources': [ 229 'sources': [
231 'test/multiprocess_test.cc',
232 'test/multiprocess_test.h',
233 'test/perf_test_suite.cc',
234 'test/perf_test_suite.h',
235 'test/test_file_util.h', 230 'test/test_file_util.h',
236 'test/test_file_util_linux.cc', 231 'test/test_file_util_linux.cc',
237 'test/test_file_util_mac.cc', 232 'test/test_file_util_mac.cc',
238 'test/test_file_util_posix.cc', 233 'test/test_file_util_posix.cc',
239 'test/test_file_util_win.cc', 234 'test/test_file_util_win.cc',
240 'test/test_suite.cc',
241 'test/test_suite.h',
242 ], 235 ],
243 }, 236 },
244 { 237 {
245 'target_name': 'test_support_perf', 238 'target_name': 'test_support_perf',
246 'type': '<(library)', 239 'type': '<(library)',
247 'dependencies': [ 240 'dependencies': [
248 'base', 241 'base',
249 '../testing/gtest.gyp:gtest', 242 '../testing/gtest.gyp:gtest',
250 ], 243 ],
251 'sources': [ 244 'sources': [
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 ], 281 ],
289 }], 282 }],
290 ], 283 ],
291 } 284 }
292 285
293 # Local Variables: 286 # Local Variables:
294 # tab-width:2 287 # tab-width:2
295 # indent-tabs-mode:nil 288 # indent-tabs-mode:nil
296 # End: 289 # End:
297 # vim: set expandtab tabstop=2 shiftwidth=2: 290 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « base/DEPS ('k') | base/base_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698