| 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 '$MEDIA_DIR/using_media.scons', |
| 19 '$NPAPI_DIR/using_npapi.scons', | 19 '$NPAPI_DIR/using_npapi.scons', |
| 20 '$SKIA_DIR/using_skia.scons', | 20 '$SKIA_DIR/using_skia.scons', |
| 21 '$ZLIB_DIR/using_zlib.scons', | 21 '$ZLIB_DIR/using_zlib.scons', |
| 22 ], {'env':env}) | 22 ], {'env':env}) |
| 23 | 23 |
| 24 env.Append( | 24 env.Append( |
| 25 LIBS = [ | 25 LIBS = [ |
| 26 'debugger', | 26 'debugger', |
| 27 'glue', | 27 'glue', |
| 28 'views', |
| 28 ], | 29 ], |
| 29 ) | 30 ) |
| 30 | 31 |
| 31 env.Prepend( | 32 env.Prepend( |
| 32 CPPPATH = [ | 33 CPPPATH = [ |
| 33 '$CHROME_DIR/app', | 34 '$CHROME_DIR/app', |
| 34 '$CHROME_SRC_DIR', | 35 '$CHROME_SRC_DIR', |
| 35 # To get the #include of history_indexer.h, | 36 # To get the #include of history_indexer.h, |
| 36 # generated from history/history_indexer.idl. | 37 # generated from history/history_indexer.idl. |
| 37 'history', | 38 'history', |
| (...skipping 838 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 876 | 877 |
| 877 xmldoc_tool_list = [ | 878 xmldoc_tool_list = [ |
| 878 MSVSTool('VCCLCompilerTool', | 879 MSVSTool('VCCLCompilerTool', |
| 879 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), | 880 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), |
| 880 ObjectFile='$(IntDir)/$(InputName)1.obj'), | 881 ObjectFile='$(IntDir)/$(InputName)1.obj'), |
| 881 ] | 882 ] |
| 882 | 883 |
| 883 for filename in xmldoc_files: | 884 for filename in xmldoc_files: |
| 884 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) | 885 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) |
| 885 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) | 886 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) |
| OLD | NEW |