| 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', |
| 11 '$CHROME_DIR/third_party/wtl/using_wtl.scons', | 11 '$CHROME_DIR/third_party/wtl/using_wtl.scons', |
| 12 '$GOOGLE_UPDATE_DIR/using_google_update.scons', | 12 '$GOOGLE_UPDATE_DIR/using_google_update.scons', |
| 13 '$GRIT_DIR/build/using_generated_resources.scons', | 13 '$GRIT_DIR/build/using_generated_resources.scons', |
| 14 '$GTEST_DIR/../using_gtest.scons', | 14 '$GTEST_DIR/../using_gtest.scons', |
| 15 '$ICU38_DIR/using_icu38.scons', | 15 '$ICU38_DIR/using_icu38.scons', |
| 16 '$LIBPNG_DIR/using_libpng.scons', | 16 '$LIBPNG_DIR/using_libpng.scons', |
| 17 '$LIBXML_DIR/using_libxml.scons', | 17 '$LIBXML_DIR/using_libxml.scons', |
| 18 '$MEDIA_DIR/using_media.scons', |
| 18 '$NPAPI_DIR/using_npapi.scons', | 19 '$NPAPI_DIR/using_npapi.scons', |
| 19 '$SKIA_DIR/using_skia.scons', | 20 '$SKIA_DIR/using_skia.scons', |
| 20 '$ZLIB_DIR/using_zlib.scons', | 21 '$ZLIB_DIR/using_zlib.scons', |
| 21 ], {'env':env}) | 22 ], {'env':env}) |
| 22 | 23 |
| 23 env.Prepend( | 24 env.Prepend( |
| 24 CPPPATH = [ | 25 CPPPATH = [ |
| 25 '$CHROME_DIR/app', | 26 '$CHROME_DIR/app', |
| 26 '$CHROME_SRC_DIR', | 27 '$CHROME_SRC_DIR', |
| 27 # To get the #include of history_indexer.h, | 28 # To get the #include of history_indexer.h, |
| (...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 'extensions/extension.h', | 502 'extensions/extension.h', |
| 502 'extensions/extension_protocols.h', | 503 'extensions/extension_protocols.h', |
| 503 'extensions/extensions_service.cc', | 504 'extensions/extensions_service.cc', |
| 504 'extensions/extensions_service.h', | 505 'extensions/extensions_service.h', |
| 505 'extensions/user_script_master.cc', | 506 'extensions/user_script_master.cc', |
| 506 'extensions/user_script_master.h', | 507 'extensions/user_script_master.h', |
| 507 ]), | 508 ]), |
| 508 MSVSFilter('Renderer Host', [ | 509 MSVSFilter('Renderer Host', [ |
| 509 'renderer_host/async_resource_handler.cc', | 510 'renderer_host/async_resource_handler.cc', |
| 510 'renderer_host/async_resource_handler.h', | 511 'renderer_host/async_resource_handler.h', |
| 512 'renderer_host/audio_renderer_host.cc', |
| 513 'renderer_host/audio_renderer_host.h', |
| 511 'renderer_host/backing_store.h', | 514 'renderer_host/backing_store.h', |
| 512 'renderer_host/backing_store.cc', | 515 'renderer_host/backing_store.cc', |
| 513 'renderer_host/backing_store_win.cc', | 516 'renderer_host/backing_store_win.cc', |
| 514 'renderer_host/browser_render_process_host.cc', | 517 'renderer_host/browser_render_process_host.cc', |
| 515 'renderer_host/browser_render_process_host.h', | 518 'renderer_host/browser_render_process_host.h', |
| 516 'renderer_host/buffered_resource_handler.cc', | 519 'renderer_host/buffered_resource_handler.cc', |
| 517 'renderer_host/buffered_resource_handler.h', | 520 'renderer_host/buffered_resource_handler.h', |
| 518 'renderer_host/cross_site_resource_handler.cc', | 521 'renderer_host/cross_site_resource_handler.cc', |
| 519 'renderer_host/cross_site_resource_handler.h', | 522 'renderer_host/cross_site_resource_handler.h', |
| 520 'renderer_host/download_resource_handler.cc', | 523 'renderer_host/download_resource_handler.cc', |
| (...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 915 | 918 |
| 916 xmldoc_tool_list = [ | 919 xmldoc_tool_list = [ |
| 917 MSVSTool('VCCLCompilerTool', | 920 MSVSTool('VCCLCompilerTool', |
| 918 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), | 921 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), |
| 919 ObjectFile='$(IntDir)/$(InputName)1.obj'), | 922 ObjectFile='$(IntDir)/$(InputName)1.obj'), |
| 920 ] | 923 ] |
| 921 | 924 |
| 922 for filename in xmldoc_files: | 925 for filename in xmldoc_files: |
| 923 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) | 926 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) |
| 924 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) | 927 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) |
| OLD | NEW |