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.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 Loading... |
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}') |
OLD | NEW |