Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(925)

Side by Side Diff: webkit/build/WebCore/SConscript

Issue 27226: Fix Linux shared build breakage due to new sources in WebKit scons. (Closed)
Patch Set: Created 11 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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}')
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698