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

Side by Side Diff: base/SConscript

Issue 4079: Porting refactoring changes:... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 12 years, 2 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 | « no previous file | base/build/base.vcproj » ('j') | base/build/base.vcproj » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2006-2008 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 Import('env') 5 Import('env')
6 6
7 env = env.Clone() 7 env = env.Clone()
8 env_tests = env.Clone() 8 env_tests = env.Clone()
9 9
10 env.Prepend( 10 env.Prepend(
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 'lazy_instance.cc', 43 'lazy_instance.cc',
44 'lock.cc', 44 'lock.cc',
45 'logging.cc', 45 'logging.cc',
46 'md5.cc', 46 'md5.cc',
47 'memory_debug.cc', 47 'memory_debug.cc',
48 'message_loop.cc', 48 'message_loop.cc',
49 'message_pump_default.cc', 49 'message_pump_default.cc',
50 'non_thread_safe.cc', 50 'non_thread_safe.cc',
51 'path_service.cc', 51 'path_service.cc',
52 'pickle.cc', 52 'pickle.cc',
53 'rand_util.cc',
Mark Mentovai 2008/09/29 22:20:05 Added the files to base/base.xcodeproj too.
53 'ref_counted.cc', 54 'ref_counted.cc',
54 'revocable_store.cc', 55 'revocable_store.cc',
55 'sha2.cc', 56 'sha2.cc',
56 'simple_thread.cc', 57 'simple_thread.cc',
57 'stats_table.cc', 58 'stats_table.cc',
58 'string_escape.cc', 59 'string_escape.cc',
59 'string_piece.cc', 60 'string_piece.cc',
60 'string_util.cc', 61 'string_util.cc',
61 'string_util_icu.cc', 62 'string_util_icu.cc',
62 'thread.cc', 63 'thread.cc',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 'debug_util_win.cc', 106 'debug_util_win.cc',
106 'file_util_win.cc', 107 'file_util_win.cc',
107 'hmac_win.cc', 108 'hmac_win.cc',
108 'iat_patch.cc', 109 'iat_patch.cc',
109 'image_util.cc', 110 'image_util.cc',
110 'lock_impl_win.cc', 111 'lock_impl_win.cc',
111 'message_pump_win.cc', 112 'message_pump_win.cc',
112 'pe_image.cc', 113 'pe_image.cc',
113 'platform_thread_win.cc', 114 'platform_thread_win.cc',
114 'process_util_win.cc', 115 'process_util_win.cc',
116 'rand_util_win.cc',
115 'registry.cc', 117 'registry.cc',
116 'shared_memory_win.cc', 118 'shared_memory_win.cc',
117 'sys_info_win.cc', 119 'sys_info_win.cc',
118 'sys_string_conversions_win.cc', 120 'sys_string_conversions_win.cc',
119 'thread_local_storage_win.cc', 121 'thread_local_storage_win.cc',
120 'thread_local_win.cc', 122 'thread_local_win.cc',
121 'time_win.cc', 123 'time_win.cc',
122 'waitable_event_win.cc', 124 'waitable_event_win.cc',
123 'win_util.cc', 125 'win_util.cc',
124 'wmi_util.cc', 126 'wmi_util.cc',
125 'worker_pool.cc', 127 'worker_pool.cc',
126 ]) 128 ])
127 129
128 if env['PLATFORM'] in ('darwin', 'posix'): 130 if env['PLATFORM'] in ('darwin', 'posix'):
129 input_files.extend([ 131 input_files.extend([
130 'condition_variable_posix.cc', 132 'condition_variable_posix.cc',
131 'debug_util_posix.cc', 133 'debug_util_posix.cc',
132 'file_util_posix.cc', 134 'file_util_posix.cc',
133 'lock_impl_posix.cc', 135 'lock_impl_posix.cc',
134 'platform_thread_posix.cc', 136 'platform_thread_posix.cc',
135 'process_util_posix.cc', 137 'process_util_posix.cc',
138 'rand_util_posix.cc',
136 'shared_memory_posix.cc', 139 'shared_memory_posix.cc',
137 'string16.cc', 140 'string16.cc',
138 'sys_info_posix.cc', 141 'sys_info_posix.cc',
139 'thread_local_storage_posix.cc', 142 'thread_local_storage_posix.cc',
140 'thread_local_posix.cc', 143 'thread_local_posix.cc',
141 'time_posix.cc', 144 'time_posix.cc',
142 'waitable_event_generic.cc', 145 'waitable_event_generic.cc',
143 ]) 146 ])
144 147
145 if env['PLATFORM'] == 'darwin': 148 if env['PLATFORM'] == 'darwin':
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 'histogram_unittest.cc', 253 'histogram_unittest.cc',
251 'json_reader_unittest.cc', 254 'json_reader_unittest.cc',
252 'json_writer_unittest.cc', 255 'json_writer_unittest.cc',
253 'lazy_instance_unittest.cc', 256 'lazy_instance_unittest.cc',
254 'linked_ptr_unittest.cc', 257 'linked_ptr_unittest.cc',
255 'message_loop_unittest.cc', 258 'message_loop_unittest.cc',
256 'observer_list_unittest.cc', 259 'observer_list_unittest.cc',
257 'path_service_unittest.cc', 260 'path_service_unittest.cc',
258 'pickle_unittest.cc', 261 'pickle_unittest.cc',
259 'pr_time_unittest.cc', 262 'pr_time_unittest.cc',
263 'rand_util_unittest.cc',
260 'ref_counted_unittest.cc', 264 'ref_counted_unittest.cc',
261 'run_all_unittests.cc', 265 'run_all_unittests.cc',
262 'scoped_ptr_unittest.cc', 266 'scoped_ptr_unittest.cc',
263 'sha2_unittest.cc', 267 'sha2_unittest.cc',
264 'shared_memory_unittest.cc', 268 'shared_memory_unittest.cc',
265 'simple_thread_unittest.cc', 269 'simple_thread_unittest.cc',
266 'singleton_unittest.cc', 270 'singleton_unittest.cc',
267 'stack_container_unittest.cc', 271 'stack_container_unittest.cc',
268 'string_escape_unittest.cc', 272 'string_escape_unittest.cc',
269 'string_piece_unittest.cc', 273 'string_piece_unittest.cc',
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 env.Alias('base', ['.', installed_base_unittests]) 341 env.Alias('base', ['.', installed_base_unittests])
338 342
339 # TODO(sgk) should this be moved into base.lib like everything else? This will 343 # TODO(sgk) should this be moved into base.lib like everything else? This will
340 # require updating a bunch of other SConscripts which link directly against 344 # require updating a bunch of other SConscripts which link directly against
341 # this generated object file. 345 # this generated object file.
342 env_tests.StaticObject('perftimer.cc') 346 env_tests.StaticObject('perftimer.cc')
343 347
344 # Since run_all_perftests supplies a main, we cannot have it in base.lib 348 # Since run_all_perftests supplies a main, we cannot have it in base.lib
345 env_tests.StaticObject('run_all_perftests.cc') 349 env_tests.StaticObject('run_all_perftests.cc')
346 350
OLDNEW
« no previous file with comments | « no previous file | base/build/base.vcproj » ('j') | base/build/base.vcproj » ('J')

Powered by Google App Engine
This is Rietveld 408576698