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

Side by Side Diff: webkit/glue/SConscript

Issue 27054: Multiple fixes for broken Linux SHARED=1 build. (Closed)
Patch Set: Created 11 years, 10 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 | « webkit/build/WebCore/SConscript ('k') | webkit/tools/test_shell/SConscript » ('j') | 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 env.Append( 9 env.Append(
10 CPPPATH = [ 10 CPPPATH = [
11 '$WEBKIT_DIR/build/WebCore', 11 '$WEBKIT_DIR/build/WebCore',
12 ] 12 ],
13 LIBS = [
14 'port',
15 'renderer',
16 'V8Bindings',
17 'WebCore',
18 'WTF',
19 ],
13 ) 20 )
14 21
15 if env.Bit('windows'): 22 if env.Bit('windows'):
16 env.Append( 23 env.Append(
17 CCFLAGS = [ 24 CCFLAGS = [
18 '/TP', 25 '/TP',
19 26
20 '/WX', 27 '/WX',
21 28
22 '/wd4800', 29 '/wd4800',
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 name = 'Glue', 141 name = 'Glue',
135 dependencies = [ 142 dependencies = [
136 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj', 143 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj',
137 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', 144 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj',
138 ('$WEBKIT_DIR/build/V8Bindings/' + 145 ('$WEBKIT_DIR/build/V8Bindings/' +
139 'V8Bindings_prebuild.vcproj'), 146 'V8Bindings_prebuild.vcproj'),
140 ('$WEBKIT_DIR/build/localized_strings/' + 147 ('$WEBKIT_DIR/build/localized_strings/' +
141 'localized_strings.vcproj'), 148 'localized_strings.vcproj'),
142 ], 149 ],
143 guid='{C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09}') 150 guid='{C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09}')
OLDNEW
« no previous file with comments | « webkit/build/WebCore/SConscript ('k') | webkit/tools/test_shell/SConscript » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698