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

Side by Side Diff: chrome/renderer/renderer.scons

Issue 27157: Initial checkin of the out of process worker implementation.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
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 | Annotate | Revision Log
« no previous file with comments | « chrome/renderer/render_view.cc ('k') | chrome/renderer/renderer.vcproj » ('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.SConscript([ 9 env.SConscript([
10 '$CHROME_DIR/third_party/wtl/using_wtl.scons', 10 '$CHROME_DIR/third_party/wtl/using_wtl.scons',
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 'renderer_main.cc', 101 'renderer_main.cc',
102 'renderer_resources.h', 102 'renderer_resources.h',
103 'user_script_slave.cc', 103 'user_script_slave.cc',
104 'user_script_slave.h', 104 'user_script_slave.h',
105 'visitedlink_slave.cc', 105 'visitedlink_slave.cc',
106 'visitedlink_slave.h', 106 'visitedlink_slave.h',
107 'webmediaplayer_delegate_impl.cc', 107 'webmediaplayer_delegate_impl.cc',
108 'webmediaplayer_delegate_impl.h', 108 'webmediaplayer_delegate_impl.h',
109 'webplugin_delegate_proxy.cc', 109 'webplugin_delegate_proxy.cc',
110 'webplugin_delegate_proxy.h', 110 'webplugin_delegate_proxy.h',
111 'webworker_proxy.cc',
112 'webworker_proxy.h',
111 ]) 113 ])
112 114
113 if not env.Bit('windows'): 115 if not env.Bit('windows'):
114 # Windows-specific. 116 # Windows-specific.
115 input_files.Remove( 117 input_files.Remove(
116 '$CHROME_DIR/tools/build/win/precompiled_wtl$OBJSUFFIX', 118 '$CHROME_DIR/tools/build/win/precompiled_wtl$OBJSUFFIX',
117 '$CHROME_DIR/tools/build/win/precompiled_wtl.h', 119 '$CHROME_DIR/tools/build/win/precompiled_wtl.h',
118 ) 120 )
119 121
120 if env.Bit('linux'): 122 if env.Bit('linux'):
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 './renderer.vsprops', 198 './renderer.vsprops',
197 '$(SolutionDir)../build/release.vsprops', 199 '$(SolutionDir)../build/release.vsprops',
198 ]) 200 ])
199 201
200 p.AddFileConfig('../tools/build/win/precompiled_wtl.cc', 202 p.AddFileConfig('../tools/build/win/precompiled_wtl.cc',
201 'Debug|Win32', 203 'Debug|Win32',
202 tools=[ 204 tools=[
203 MSVSTool('VCCLCompilerTool', 205 MSVSTool('VCCLCompilerTool',
204 UsePrecompiledHeader='1'), 206 UsePrecompiledHeader='1'),
205 ]) 207 ])
OLDNEW
« no previous file with comments | « chrome/renderer/render_view.cc ('k') | chrome/renderer/renderer.vcproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698