| 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 Import('bdict_reader_o', 'bdict_writer_o') |
| 6 | 7 |
| 7 env = env.Clone() | 8 env = env.Clone() |
| 8 | 9 |
| 9 env.SConscript([ | 10 env.SConscript([ |
| 10 '$BASE_DIR/gfx/using_base_gfx.scons', | 11 '$BASE_DIR/gfx/using_base_gfx.scons', |
| 11 '$BASE_DIR/using_base.scons', | 12 '$BASE_DIR/using_base.scons', |
| 12 '$BZIP2_DIR/using_bzip2.scons', | 13 '$BZIP2_DIR/using_bzip2.scons', |
| 13 '$CHROME_DIR/third_party/hunspell/using_hunspell.scons', | 14 '$CHROME_DIR/third_party/hunspell/using_hunspell.scons', |
| 14 '$CHROME_DIR/third_party/wtl/using_wtl.scons', | 15 '$CHROME_DIR/third_party/wtl/using_wtl.scons', |
| 15 '$CHROME_SRC_DIR/build/using_googleurl.scons', | 16 '$CHROME_SRC_DIR/build/using_googleurl.scons', |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 MSVSFilter('googleurl', [ | 232 MSVSFilter('googleurl', [ |
| 232 '$CHROME_DIR/../googleurl/src/gurl_unittest$OBJSUFFIX', | 233 '$CHROME_DIR/../googleurl/src/gurl_unittest$OBJSUFFIX', |
| 233 '$CHROME_DIR/../googleurl/src/url_canon_unittest$OBJSUFFIX', | 234 '$CHROME_DIR/../googleurl/src/url_canon_unittest$OBJSUFFIX', |
| 234 '$CHROME_DIR/../googleurl/src/url_parse_unittest$OBJSUFFIX', | 235 '$CHROME_DIR/../googleurl/src/url_parse_unittest$OBJSUFFIX', |
| 235 '$CHROME_DIR/../googleurl/src/url_util_unittest$OBJSUFFIX', | 236 '$CHROME_DIR/../googleurl/src/url_util_unittest$OBJSUFFIX', |
| 236 ]), | 237 ]), |
| 237 MSVSFilter('hunspell', [ | 238 MSVSFilter('hunspell', [ |
| 238 '$CHROME_DIR/tools/convert_dict/aff_reader$OBJSUFFIX', | 239 '$CHROME_DIR/tools/convert_dict/aff_reader$OBJSUFFIX', |
| 239 '$CHROME_DIR/tools/convert_dict/aff_reader.h', | 240 '$CHROME_DIR/tools/convert_dict/aff_reader.h', |
| 240 '$CHROME_DIR/third_party/hunspell/google/bdict.h', | 241 '$CHROME_DIR/third_party/hunspell/google/bdict.h', |
| 241 '$CHROME_DIR/third_party/hunspell/google/bdict_reader$OBJSUFFIX', | 242 bdict_reader_o, |
| 242 '$CHROME_DIR/third_party/hunspell/google/bdict_reader.h', | 243 '$CHROME_DIR/third_party/hunspell/google/bdict_reader.h', |
| 243 '$CHROME_DIR/third_party/hunspell/google/bdict_writer$OBJSUFFIX', | 244 bdict_writer_o, |
| 244 '$CHROME_DIR/third_party/hunspell/google/bdict_writer.h', | 245 '$CHROME_DIR/third_party/hunspell/google/bdict_writer.h', |
| 245 '$CHROME_DIR/tools/convert_dict/dic_reader$OBJSUFFIX', | 246 '$CHROME_DIR/tools/convert_dict/dic_reader$OBJSUFFIX', |
| 246 '$CHROME_DIR/tools/convert_dict/dic_reader.h', | 247 '$CHROME_DIR/tools/convert_dict/dic_reader.h', |
| 247 '$CHROME_DIR/tools/convert_dict/hunspell_reader$OBJSUFFIX', | 248 '$CHROME_DIR/tools/convert_dict/hunspell_reader$OBJSUFFIX', |
| 248 '$CHROME_DIR/tools/convert_dict/hunspell_reader.h', | 249 '$CHROME_DIR/tools/convert_dict/hunspell_reader.h', |
| 249 '$CHROME_DIR/third_party/hunspell/google/hunspell_tests.cc', | 250 '$CHROME_DIR/third_party/hunspell/google/hunspell_tests.cc', |
| 250 ]), | 251 ]), |
| 251 MSVSFilter('renderer', [ | 252 MSVSFilter('renderer', [ |
| 252 '$CHROME_DIR/renderer/extensions/greasemonkey_api_unittest.cc', | 253 '$CHROME_DIR/renderer/extensions/greasemonkey_api_unittest.cc', |
| 253 '$CHROME_DIR/renderer/net/render_dns_master_unittest.cc', | 254 '$CHROME_DIR/renderer/net/render_dns_master_unittest.cc', |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 '../../third_party/hunspell/using_hunspell.vsprops', | 566 '../../third_party/hunspell/using_hunspell.vsprops', |
| 566 '../../../third_party/npapi/using_npapi.vsprops', | 567 '../../../third_party/npapi/using_npapi.vsprops', |
| 567 ]) | 568 ]) |
| 568 | 569 |
| 569 p.AddFileConfig('../../tools/build/win/precompiled_wtl.cc', | 570 p.AddFileConfig('../../tools/build/win/precompiled_wtl.cc', |
| 570 'Debug|Win32', | 571 'Debug|Win32', |
| 571 tools=[ | 572 tools=[ |
| 572 MSVSTool('VCCLCompilerTool', | 573 MSVSTool('VCCLCompilerTool', |
| 573 UsePrecompiledHeader='1'), | 574 UsePrecompiledHeader='1'), |
| 574 ]) | 575 ]) |
| OLD | NEW |