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 17 matching lines...) Expand all Loading... |
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 = [ | 37 LIBS = [ |
| 38 'WebKit', |
38 'V8Bindings', | 39 'V8Bindings', |
39 'JavaScriptCore_pcre', | 40 'JavaScriptCore_pcre', |
40 ], | 41 ], |
41 ) | 42 ) |
42 | 43 |
43 input_files = [ | 44 input_files = [ |
44 '$WEBCORE_DIR/css/CSSBorderImageValue.cpp', | 45 '$WEBCORE_DIR/css/CSSBorderImageValue.cpp', |
45 '$WEBCORE_DIR/css/CSSCanvasValue.cpp', | 46 '$WEBCORE_DIR/css/CSSCanvasValue.cpp', |
46 '$WEBCORE_DIR/css/CSSCharsetRule.cpp', | 47 '$WEBCORE_DIR/css/CSSCharsetRule.cpp', |
47 '$WEBCORE_DIR/css/CSSComputedStyleDeclaration.cpp', | 48 '$WEBCORE_DIR/css/CSSComputedStyleDeclaration.cpp', |
(...skipping 953 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1001 | 1002 |
1002 env.ChromeMSVSProject('$WEBKIT_DIR/build/WebCore/WebCore.vcproj', | 1003 env.ChromeMSVSProject('$WEBKIT_DIR/build/WebCore/WebCore.vcproj', |
1003 dependencies = [ | 1004 dependencies = [ |
1004 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', | 1005 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', |
1005 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', | 1006 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', |
1006 '$LIBXML_DIR/build/libxml_config.vcproj', | 1007 '$LIBXML_DIR/build/libxml_config.vcproj', |
1007 '$LIBXSLT_DIR/build/libxslt_config.vcproj', | 1008 '$LIBXSLT_DIR/build/libxslt_config.vcproj', |
1008 '$SQLITE_DIR/sqlite.vcproj', | 1009 '$SQLITE_DIR/sqlite.vcproj', |
1009 ], | 1010 ], |
1010 guid='{1C16337B-ACF3-4D03-AA90-851C5B5EADA6}') | 1011 guid='{1C16337B-ACF3-4D03-AA90-851C5B5EADA6}') |
OLD | NEW |