OLD | NEW |
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 | 8 |
9 env.SConscript([ | 9 env.SConscript([ |
10 '$BREAKPAD_DIR/using_breakpad.scons', | 10 '$BREAKPAD_DIR/using_breakpad.scons', |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 'notification_service.cc', | 171 'notification_service.cc', |
172 'notification_service.h', | 172 'notification_service.h', |
173 'notification_source.h', | 173 'notification_source.h', |
174 'notification_types.h', | 174 'notification_types.h', |
175 'os_exchange_data.cc', | 175 'os_exchange_data.cc', |
176 'os_exchange_data.h', | 176 'os_exchange_data.h', |
177 'owned_widget_gtk.cc', | 177 'owned_widget_gtk.cc', |
178 'owned_widget_gtk.h', | 178 'owned_widget_gtk.h', |
179 'page_transition_types.h', | 179 'page_transition_types.h', |
180 'page_zoom.h', | 180 'page_zoom.h', |
| 181 'platform_util.h', |
| 182 'platform_util_linux.cc', |
| 183 'platform_util_mac.mm', |
| 184 'platform_util_win.cc', |
181 '$CHROME_DIR/tools/build/win/precompiled$OBJSUFFIX', | 185 '$CHROME_DIR/tools/build/win/precompiled$OBJSUFFIX', |
182 '$CHROME_DIR/tools/build/win/precompiled.h', | 186 '$CHROME_DIR/tools/build/win/precompiled.h', |
183 'pref_member.cc', | 187 'pref_member.cc', |
184 'pref_member.h', | 188 'pref_member.h', |
185 'pref_names.cc', | 189 'pref_names.cc', |
186 'pref_names.h', | 190 'pref_names.h', |
187 'pref_service.cc', | 191 'pref_service.cc', |
188 'pref_service.h', | 192 'pref_service.h', |
189 'process_watcher.cc', | 193 'process_watcher.cc', |
190 'process_watcher.h', | 194 'process_watcher.h', |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 | 254 |
251 if not env.Bit('windows'): | 255 if not env.Bit('windows'): |
252 # Windows specific files | 256 # Windows specific files |
253 input_files.Remove( | 257 input_files.Remove( |
254 'chrome_paths_win.cc', | 258 'chrome_paths_win.cc', |
255 'classfactory.cc', | 259 'classfactory.cc', |
256 'gfx/chrome_canvas_win.cc', | 260 'gfx/chrome_canvas_win.cc', |
257 'gfx/chrome_font_win.cc', | 261 'gfx/chrome_font_win.cc', |
258 'gfx/path_win.cc', | 262 'gfx/path_win.cc', |
259 'ipc_channel_win.cc', | 263 'ipc_channel_win.cc', |
| 264 'platform_util_win.cc', |
260 'resource_bundle_win.cc', | 265 'resource_bundle_win.cc', |
261 'win_safe_util.cc', | 266 'win_safe_util.cc', |
262 'win_util.cc', | 267 'win_util.cc', |
263 '$CHROME_DIR/tools/build/win/precompiled$OBJSUFFIX', | 268 '$CHROME_DIR/tools/build/win/precompiled$OBJSUFFIX', |
264 ) | 269 ) |
265 | 270 |
266 if not env.Bit('linux'): | 271 if not env.Bit('linux'): |
267 # Linux specific files | 272 # Linux specific files |
268 input_files.Remove( | 273 input_files.Remove( |
269 'chrome_paths_linux.cc', | 274 'chrome_paths_linux.cc', |
270 'gfx/chrome_canvas_skia.cc', | 275 'gfx/chrome_canvas_skia.cc', |
271 'gfx/chrome_font_gtk.cc', | 276 'gfx/chrome_font_gtk.cc', |
272 'gfx/chrome_font_skia.cc', | 277 'gfx/chrome_font_skia.cc', |
273 'gfx/path_gtk.cc', | 278 'gfx/path_gtk.cc', |
274 'owned_widget_gtk.cc', | 279 'owned_widget_gtk.cc', |
275 'owned_widget_gtk.h', | 280 'owned_widget_gtk.h', |
| 281 'platform_util_linux.cc', |
276 'resource_bundle_linux.cc', | 282 'resource_bundle_linux.cc', |
277 ) | 283 ) |
278 | 284 |
279 if not env.Bit('mac'): | 285 if not env.Bit('mac'): |
280 # Mac specific files | 286 # Mac specific files |
281 input_files.Remove( | 287 input_files.Remove( |
282 'chrome_paths_mac.cc', | 288 'chrome_paths_mac.cc', |
| 289 'platform_util_mac.mm', |
283 ) | 290 ) |
284 | 291 |
285 if not env.Bit('posix'): | 292 if not env.Bit('posix'): |
286 input_files.Remove( | 293 input_files.Remove( |
287 'ipc_channel_posix.cc', | 294 'ipc_channel_posix.cc', |
288 ) | 295 ) |
289 | 296 |
290 if env.Bit('windows'): | 297 if env.Bit('windows'): |
291 input_files.Append( | 298 input_files.Append( |
292 'transport_dib_win.cc' | 299 'transport_dib_win.cc' |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
353 './common.vsprops', | 360 './common.vsprops', |
354 '$(SolutionDir)../build/release.vsprops', | 361 '$(SolutionDir)../build/release.vsprops', |
355 ]) | 362 ]) |
356 | 363 |
357 p.AddFileConfig('../tools/build/win/precompiled.cc', | 364 p.AddFileConfig('../tools/build/win/precompiled.cc', |
358 'Debug|Win32', | 365 'Debug|Win32', |
359 tools=[ | 366 tools=[ |
360 MSVSTool('VCCLCompilerTool', | 367 MSVSTool('VCCLCompilerTool', |
361 UsePrecompiledHeader='1'), | 368 UsePrecompiledHeader='1'), |
362 ]) | 369 ]) |
OLD | NEW |