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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 'ipc_channel_posix.cc', | 276 'ipc_channel_posix.cc', |
277 ) | 277 ) |
278 | 278 |
279 if env.Bit('windows'): | 279 if env.Bit('windows'): |
280 input_files.Append( | 280 input_files.Append( |
281 'transport_dib_win.cc' | 281 'transport_dib_win.cc' |
282 ) | 282 ) |
283 | 283 |
284 if env.Bit('linux'): | 284 if env.Bit('linux'): |
285 input_files.Append( | 285 input_files.Append( |
286 '$CHROME_DIR/third_party/xdg_user_dirs/xdg_user_dir_lookup.cc', | |
287 'transport_dib_linux.cc', | 286 'transport_dib_linux.cc', |
288 'x11_util.cc' | 287 'x11_util.cc' |
289 ) | 288 ) |
290 | 289 |
291 if env.Bit('mac'): | 290 if env.Bit('mac'): |
292 input_files.Append( | 291 input_files.Append( |
293 'transport_dib_mac.cc' | 292 'transport_dib_mac.cc' |
294 ) | 293 ) |
295 | 294 |
296 if not env.Bit('mac'): | 295 if not env.Bit('mac'): |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 './common.vsprops', | 341 './common.vsprops', |
343 '$(SolutionDir)../build/release.vsprops', | 342 '$(SolutionDir)../build/release.vsprops', |
344 ]) | 343 ]) |
345 | 344 |
346 p.AddFileConfig('../tools/build/win/precompiled.cc', | 345 p.AddFileConfig('../tools/build/win/precompiled.cc', |
347 'Debug|Win32', | 346 'Debug|Win32', |
348 tools=[ | 347 tools=[ |
349 MSVSTool('VCCLCompilerTool', | 348 MSVSTool('VCCLCompilerTool', |
350 UsePrecompiledHeader='1'), | 349 UsePrecompiledHeader='1'), |
351 ]) | 350 ]) |
OLD | NEW |