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.SConscript([ | 9 env.SConscript([ |
10 '$CHROME_DIR/third_party/wtl/using_wtl.scons', | 10 '$CHROME_DIR/third_party/wtl/using_wtl.scons', |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 'render_process.h', | 88 'render_process.h', |
89 'render_thread.cc', | 89 'render_thread.cc', |
90 'render_thread.h', | 90 'render_thread.h', |
91 'render_view.cc', | 91 'render_view.cc', |
92 'render_view.h', | 92 'render_view.h', |
93 'render_widget.cc', | 93 'render_widget.cc', |
94 'render_widget.h', | 94 'render_widget.h', |
95 'renderer_glue.cc', | 95 'renderer_glue.cc', |
96 'renderer_histogram_snapshots.cc', | 96 'renderer_histogram_snapshots.cc', |
97 'renderer_histogram_snapshots.h', | 97 'renderer_histogram_snapshots.h', |
| 98 'renderer_webkitclient_impl.cc', |
| 99 'renderer_webkitclient_impl.h', |
98 'renderer_main.cc', | 100 'renderer_main.cc', |
99 'renderer_resources.h', | 101 'renderer_resources.h', |
100 'user_script_slave.cc', | 102 'user_script_slave.cc', |
101 'user_script_slave.h', | 103 'user_script_slave.h', |
102 'visitedlink_slave.cc', | 104 'visitedlink_slave.cc', |
103 'visitedlink_slave.h', | 105 'visitedlink_slave.h', |
104 'webmediaplayer_delegate_impl.cc', | 106 'webmediaplayer_delegate_impl.cc', |
105 'webmediaplayer_delegate_impl.h', | 107 'webmediaplayer_delegate_impl.h', |
106 'webplugin_delegate_proxy.cc', | 108 'webplugin_delegate_proxy.cc', |
107 'webplugin_delegate_proxy.h', | 109 'webplugin_delegate_proxy.h', |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 './renderer.vsprops', | 195 './renderer.vsprops', |
194 '$(SolutionDir)../build/release.vsprops', | 196 '$(SolutionDir)../build/release.vsprops', |
195 ]) | 197 ]) |
196 | 198 |
197 p.AddFileConfig('../tools/build/win/precompiled_wtl.cc', | 199 p.AddFileConfig('../tools/build/win/precompiled_wtl.cc', |
198 'Debug|Win32', | 200 'Debug|Win32', |
199 tools=[ | 201 tools=[ |
200 MSVSTool('VCCLCompilerTool', | 202 MSVSTool('VCCLCompilerTool', |
201 UsePrecompiledHeader='1'), | 203 UsePrecompiledHeader='1'), |
202 ]) | 204 ]) |
OLD | NEW |