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 '$BASE_DIR/gfx/using_base_gfx.scons', | 10 '$BASE_DIR/gfx/using_base_gfx.scons', |
11 '$BASE_DIR/using_base.scons', | 11 '$BASE_DIR/using_base.scons', |
12 '$BZIP2_DIR/using_bzip2.scons', | 12 '$BZIP2_DIR/using_bzip2.scons', |
13 '$CHROME_DIR/third_party/hunspell/using_hunspell.scons', | 13 '$CHROME_DIR/third_party/hunspell/using_hunspell.scons', |
14 '$CHROME_DIR/third_party/wtl/using_wtl.scons', | 14 '$CHROME_DIR/third_party/wtl/using_wtl.scons', |
15 '$CHROME_SRC_DIR/build/using_googleurl.scons', | 15 '$CHROME_SRC_DIR/build/using_googleurl.scons', |
16 '$CHROME_SRC_DIR/build/using_v8.scons', | 16 '$CHROME_SRC_DIR/build/using_v8.scons', |
17 '$GRIT_DIR/build/using_generated_resources.scons', | 17 '$GRIT_DIR/build/using_generated_resources.scons', |
18 '$GTEST_DIR/../using_gtest.scons', | 18 '$GTEST_DIR/../using_gtest.scons', |
19 '$ICU38_DIR/using_icu38.scons', | 19 '$ICU38_DIR/using_icu38.scons', |
20 '$LIBJPEG_DIR/using_libjpeg.scons', | 20 '$LIBJPEG_DIR/using_libjpeg.scons', |
21 '$LIBPNG_DIR/using_libpng.scons', | 21 '$LIBPNG_DIR/using_libpng.scons', |
22 '$LIBXML_DIR/using_libxml.scons', | 22 '$LIBXML_DIR/using_libxml.scons', |
23 '$LIBXSLT_DIR/using_libxslt.scons', | 23 '$LIBXSLT_DIR/using_libxslt.scons', |
24 '$MODP_B64_DIR/using_modp_b64.scons', | 24 '$MODP_B64_DIR/using_modp_b64.scons', |
| 25 '$MEDIA_DIR/using_media.scons', |
25 '$NET_DIR/using_net.scons', | 26 '$NET_DIR/using_net.scons', |
26 '$NPAPI_DIR/using_npapi.scons', | 27 '$NPAPI_DIR/using_npapi.scons', |
27 '$SDCH_DIR/using_sdch.scons', | 28 '$SDCH_DIR/using_sdch.scons', |
28 '$SKIA_DIR/using_skia.scons', | 29 '$SKIA_DIR/using_skia.scons', |
29 '$ZLIB_DIR/using_zlib.scons', | 30 '$ZLIB_DIR/using_zlib.scons', |
30 ], {'env':env}) | 31 ], {'env':env}) |
31 | 32 |
32 env.Prepend( | 33 env.Prepend( |
33 CPPPATH = [ | 34 CPPPATH = [ |
34 '$CHROME_DIR/app/resources', | 35 '$CHROME_DIR/app/resources', |
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
575 '../../third_party/hunspell/using_hunspell.vsprops', | 576 '../../third_party/hunspell/using_hunspell.vsprops', |
576 '../../../third_party/npapi/using_npapi.vsprops', | 577 '../../../third_party/npapi/using_npapi.vsprops', |
577 ]) | 578 ]) |
578 | 579 |
579 p.AddFileConfig('../../tools/build/win/precompiled_wtl.cc', | 580 p.AddFileConfig('../../tools/build/win/precompiled_wtl.cc', |
580 'Debug|Win32', | 581 'Debug|Win32', |
581 tools=[ | 582 tools=[ |
582 MSVSTool('VCCLCompilerTool', | 583 MSVSTool('VCCLCompilerTool', |
583 UsePrecompiledHeader='1'), | 584 UsePrecompiledHeader='1'), |
584 ]) | 585 ]) |
OLD | NEW |