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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 '$CHROME_DIR/tools/build/win/precompiled_wtl.h', | 96 '$CHROME_DIR/tools/build/win/precompiled_wtl.h', |
97 ) | 97 ) |
98 | 98 |
99 # TODO(port): Port these to Linux | 99 # TODO(port): Port these to Linux |
100 if env.Bit('linux'): | 100 if env.Bit('linux'): |
101 input_files.Remove( | 101 input_files.Remove( |
102 'chrome_plugin_host.cc', | 102 'chrome_plugin_host.cc', |
103 'debug_message_handler.cc', | 103 'debug_message_handler.cc', |
104 'external_js_object.cc', | 104 'external_js_object.cc', |
105 'plugin_channel_host.cc', | 105 'plugin_channel_host.cc', |
106 'render_view.cc', | |
107 'render_widget.cc', | |
108 'renderer_main.cc', | 106 'renderer_main.cc', |
109 'webplugin_delegate_proxy.cc', | 107 'webplugin_delegate_proxy.cc', |
110 ) | 108 ) |
111 | 109 |
112 # TODO(port): Port these to Mac | 110 # TODO(port): Port these to Mac |
113 if env.Bit('mac'): | 111 if env.Bit('mac'): |
114 input_files.Remove( | 112 input_files.Remove( |
115 'chrome_plugin_host.cc', | 113 'chrome_plugin_host.cc', |
116 'debug_message_handler.cc', | 114 'debug_message_handler.cc', |
117 'external_js_object.cc', | 115 'external_js_object.cc', |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 './renderer.vsprops', | 174 './renderer.vsprops', |
177 '$(SolutionDir)../build/release.vsprops', | 175 '$(SolutionDir)../build/release.vsprops', |
178 ]) | 176 ]) |
179 | 177 |
180 p.AddFileConfig('../tools/build/win/precompiled_wtl.cc', | 178 p.AddFileConfig('../tools/build/win/precompiled_wtl.cc', |
181 'Debug|Win32', | 179 'Debug|Win32', |
182 tools=[ | 180 tools=[ |
183 MSVSTool('VCCLCompilerTool', | 181 MSVSTool('VCCLCompilerTool', |
184 UsePrecompiledHeader='1'), | 182 UsePrecompiledHeader='1'), |
185 ]) | 183 ]) |
OLD | NEW |