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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 'net/render_dns_master.h', | 56 'net/render_dns_master.h', |
57 'net/render_dns_queue.cc', | 57 'net/render_dns_queue.cc', |
58 'net/render_dns_queue.h', | 58 'net/render_dns_queue.h', |
59 ]), | 59 ]), |
60 MSVSFilter('extensions', [ | 60 MSVSFilter('extensions', [ |
61 'extensions/extension_bindings.cc', | 61 'extensions/extension_bindings.cc', |
62 'extensions/extension_bindings.h', | 62 'extensions/extension_bindings.h', |
63 ]), | 63 ]), |
64 'about_handler.cc', | 64 'about_handler.cc', |
65 'about_handler.h', | 65 'about_handler.h', |
66 'chrome_plugin_host.cc', | |
67 'chrome_plugin_host.h', | |
68 'debug_message_handler.cc', | 66 'debug_message_handler.cc', |
69 'debug_message_handler.h', | 67 'debug_message_handler.h', |
70 'dev_tools_agent.cc', | 68 'dev_tools_agent.cc', |
71 'dev_tools_agent.h', | 69 'dev_tools_agent.h', |
72 'dev_tools_client.cc', | 70 'dev_tools_client.cc', |
73 'dev_tools_client.h', | 71 'dev_tools_client.h', |
74 'dev_tools_messages.h', | 72 'dev_tools_messages.h', |
75 'dev_tools_messages_internal.h', | 73 'dev_tools_messages_internal.h', |
76 'dom_ui_bindings.cc', | 74 'dom_ui_bindings.cc', |
77 'dom_ui_bindings.h', | 75 'dom_ui_bindings.h', |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 ) | 118 ) |
121 | 119 |
122 if env.Bit('linux'): | 120 if env.Bit('linux'): |
123 # Linux-specific. | 121 # Linux-specific. |
124 input_files.Append( | 122 input_files.Append( |
125 'renderer_main_platform_delegate_linux.cc', | 123 'renderer_main_platform_delegate_linux.cc', |
126 ) | 124 ) |
127 | 125 |
128 # TODO(port): Port these to Linux | 126 # TODO(port): Port these to Linux |
129 input_files.Remove( | 127 input_files.Remove( |
130 'chrome_plugin_host.cc', | |
131 'plugin_channel_host.cc', | 128 'plugin_channel_host.cc', |
132 'webplugin_delegate_proxy.cc', | 129 'webplugin_delegate_proxy.cc', |
133 ) | 130 ) |
134 | 131 |
135 # TODO(port): Port these to Mac | 132 # TODO(port): Port these to Mac |
136 if env.Bit('mac'): | 133 if env.Bit('mac'): |
137 input_files.Remove( | 134 input_files.Remove( |
138 'chrome_plugin_host.cc', | |
139 'debug_message_handler.cc', | 135 'debug_message_handler.cc', |
140 'external_js_object.cc', | 136 'external_js_object.cc', |
141 'net/render_dns_master.cc', | 137 'net/render_dns_master.cc', |
142 'plugin_channel_host.cc', | 138 'plugin_channel_host.cc', |
143 'render_view.cc', | 139 'render_view.cc', |
144 'render_widget.cc', | 140 'render_widget.cc', |
145 'renderer_glue.cc', | 141 'renderer_glue.cc', |
146 'webplugin_delegate_proxy.cc', | 142 'webplugin_delegate_proxy.cc', |
147 ) | 143 ) |
148 | 144 |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 './renderer.vsprops', | 194 './renderer.vsprops', |
199 '$(SolutionDir)../build/release.vsprops', | 195 '$(SolutionDir)../build/release.vsprops', |
200 ]) | 196 ]) |
201 | 197 |
202 p.AddFileConfig('../tools/build/win/precompiled_wtl.cc', | 198 p.AddFileConfig('../tools/build/win/precompiled_wtl.cc', |
203 'Debug|Win32', | 199 'Debug|Win32', |
204 tools=[ | 200 tools=[ |
205 MSVSTool('VCCLCompilerTool', | 201 MSVSTool('VCCLCompilerTool', |
206 UsePrecompiledHeader='1'), | 202 UsePrecompiledHeader='1'), |
207 ]) | 203 ]) |
OLD | NEW |