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 if env.Bit('windows'): | 9 if env.Bit('windows'): |
10 env.Append( | 10 env.Append( |
(...skipping 15 matching lines...) Expand all Loading... |
26 | 26 |
27 if env.Bit('posix'): | 27 if env.Bit('posix'): |
28 if '-Wall' in env['CXXFLAGS'] and '-Werror' in env['CXXFLAGS']: | 28 if '-Wall' in env['CXXFLAGS'] and '-Werror' in env['CXXFLAGS']: |
29 # It'd be nice to fix these warnings upstream, but we're not going to | 29 # It'd be nice to fix these warnings upstream, but we're not going to |
30 # block on it. | 30 # block on it. |
31 env['CXXFLAGS'].remove('-Werror') | 31 env['CXXFLAGS'].remove('-Werror') |
32 | 32 |
33 env.Append( | 33 env.Append( |
34 CPPPATH = [ | 34 CPPPATH = [ |
35 '$THIRD_PARTY_DIR/sqlite/preprocessed' | 35 '$THIRD_PARTY_DIR/sqlite/preprocessed' |
36 ] | 36 ], |
| 37 LIBS = [ |
| 38 'V8Bindings', |
| 39 'JavaScriptCore_pcre', |
| 40 ], |
37 ) | 41 ) |
38 | 42 |
39 input_files = [ | 43 input_files = [ |
40 '$WEBCORE_DIR/css/CSSBorderImageValue.cpp', | 44 '$WEBCORE_DIR/css/CSSBorderImageValue.cpp', |
41 '$WEBCORE_DIR/css/CSSCanvasValue.cpp', | 45 '$WEBCORE_DIR/css/CSSCanvasValue.cpp', |
42 '$WEBCORE_DIR/css/CSSCharsetRule.cpp', | 46 '$WEBCORE_DIR/css/CSSCharsetRule.cpp', |
43 '$WEBCORE_DIR/css/CSSComputedStyleDeclaration.cpp', | 47 '$WEBCORE_DIR/css/CSSComputedStyleDeclaration.cpp', |
44 '$WEBCORE_DIR/css/CSSCursorImageValue.cpp', | 48 '$WEBCORE_DIR/css/CSSCursorImageValue.cpp', |
45 '$WEBCORE_DIR/css/CSSFontFace.cpp', | 49 '$WEBCORE_DIR/css/CSSFontFace.cpp', |
46 '$WEBCORE_DIR/css/CSSFontFaceRule.cpp', | 50 '$WEBCORE_DIR/css/CSSFontFaceRule.cpp', |
(...skipping 945 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
992 | 996 |
993 env.ChromeMSVSProject('$WEBKIT_DIR/build/WebCore/WebCore.vcproj', | 997 env.ChromeMSVSProject('$WEBKIT_DIR/build/WebCore/WebCore.vcproj', |
994 dependencies = [ | 998 dependencies = [ |
995 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', | 999 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', |
996 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', | 1000 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', |
997 '$LIBXML_DIR/build/libxml_config.vcproj', | 1001 '$LIBXML_DIR/build/libxml_config.vcproj', |
998 '$LIBXSLT_DIR/build/libxslt_config.vcproj', | 1002 '$LIBXSLT_DIR/build/libxslt_config.vcproj', |
999 '$SQLITE_DIR/sqlite.vcproj', | 1003 '$SQLITE_DIR/sqlite.vcproj', |
1000 ], | 1004 ], |
1001 guid='{1C16337B-ACF3-4D03-AA90-851C5B5EADA6}') | 1005 guid='{1C16337B-ACF3-4D03-AA90-851C5B5EADA6}') |
OLD | NEW |