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

Side by Side Diff: webkit/SConscript.port

Issue 14472: Initial generation of native Visual Studio solution files... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years 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 | Annotate | Revision Log
« no previous file with comments | « webkit/SConscript.javascriptcore_pcre ('k') | webkit/activex_shim/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 if env.Bit('windows'): 9 if env.Bit('windows'):
10 env.Prepend( 10 env.Prepend(
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 input_files.extend([ 188 input_files.extend([
189 '$PORT_DIR/bridge/KJSBridge.cpp', 189 '$PORT_DIR/bridge/KJSBridge.cpp',
190 '$PORT_DIR/bridge/ScriptControllerKJS.cpp', 190 '$PORT_DIR/bridge/ScriptControllerKJS.cpp',
191 ]) 191 ])
192 else: 192 else:
193 input_files.extend([ 193 input_files.extend([
194 '$PORT_DIR/bindings/v8/ScriptController.cpp', 194 '$PORT_DIR/bindings/v8/ScriptController.cpp',
195 ]) 195 ])
196 196
197 env.ChromeStaticLibrary("port", input_files) 197 env.ChromeStaticLibrary("port", input_files)
198
199 env.ChromeMSVSProject('$WEBKIT_DIR/build/port/port.vcproj',
200 name = 'Port',
201 dependencies = [
202 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj',
203 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj',
204 ],
205 guid='{5597AD47-3494-4750-A235-4F9C2F864700}')
OLDNEW
« no previous file with comments | « webkit/SConscript.javascriptcore_pcre ('k') | webkit/activex_shim/SConscript » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698