| 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 '$CHROME_DIR/third_party/hunspell/using_hunspell.scons', | 10 '$CHROME_DIR/third_party/hunspell/using_hunspell.scons', |
| (...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 'printing/print_settings.h', | 362 'printing/print_settings.h', |
| 363 'printing/print_view_manager.cc', | 363 'printing/print_view_manager.cc', |
| 364 'printing/print_view_manager.h', | 364 'printing/print_view_manager.h', |
| 365 'printing/printed_document.cc', | 365 'printing/printed_document.cc', |
| 366 'printing/printed_document.h', | 366 'printing/printed_document.h', |
| 367 'printing/printed_page.cc', | 367 'printing/printed_page.cc', |
| 368 'printing/printed_page.h', | 368 'printing/printed_page.h', |
| 369 'printing/printed_pages_source.h', | 369 'printing/printed_pages_source.h', |
| 370 'printing/printer_query.cc', | 370 'printing/printer_query.cc', |
| 371 'printing/printer_query.h', | 371 'printing/printer_query.h', |
| 372 'printing/units.cc', | |
| 373 'printing/units.h', | |
| 374 'printing/win_printing_context.cc', | 372 'printing/win_printing_context.cc', |
| 375 'printing/win_printing_context.h', | 373 'printing/win_printing_context.h', |
| 376 ]), | 374 ]), |
| 377 MSVSFilter('Sandbox', [ | 375 MSVSFilter('Sandbox', [ |
| 378 'sandbox_policy.cc', | 376 'sandbox_policy.cc', |
| 379 'sandbox_policy.h', | 377 'sandbox_policy.h', |
| 380 ]), | 378 ]), |
| 381 MSVSFilter('Password Manager', [ | 379 MSVSFilter('Password Manager', [ |
| 382 'password_manager/encryptor.cc', | 380 'password_manager/encryptor.cc', |
| 383 'password_manager/encryptor.h', | 381 'password_manager/encryptor.h', |
| (...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 902 | 900 |
| 903 xmldoc_tool_list = [ | 901 xmldoc_tool_list = [ |
| 904 MSVSTool('VCCLCompilerTool', | 902 MSVSTool('VCCLCompilerTool', |
| 905 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), | 903 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), |
| 906 ObjectFile='$(IntDir)/$(InputName)1.obj'), | 904 ObjectFile='$(IntDir)/$(InputName)1.obj'), |
| 907 ] | 905 ] |
| 908 | 906 |
| 909 for filename in xmldoc_files: | 907 for filename in xmldoc_files: |
| 910 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) | 908 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) |
| 911 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) | 909 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) |
| OLD | NEW |