| 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 16 matching lines...) Expand all Loading... |
| 27 ], | 27 ], |
| 28 ) | 28 ) |
| 29 | 29 |
| 30 input_files = [ | 30 input_files = [ |
| 31 'about_handler.cc', | 31 'about_handler.cc', |
| 32 'chrome_plugin_host.cc', | 32 'chrome_plugin_host.cc', |
| 33 'debug_message_handler.cc', | 33 'debug_message_handler.cc', |
| 34 'dom_ui_bindings.cc', | 34 'dom_ui_bindings.cc', |
| 35 'external_host_bindings.cc', | 35 'external_host_bindings.cc', |
| 36 'external_js_object.cc', | 36 'external_js_object.cc', |
| 37 'greasemonkey_slave.cc', | |
| 38 'localized_error.cc', | 37 'localized_error.cc', |
| 39 'plugin_channel_host.cc', | 38 'plugin_channel_host.cc', |
| 40 'render_process.cc', | 39 'render_process.cc', |
| 41 'render_thread.cc', | 40 'render_thread.cc', |
| 42 'render_view.cc', | 41 'render_view.cc', |
| 43 'render_widget.cc', | 42 'render_widget.cc', |
| 44 'renderer_glue.cc', | 43 'renderer_glue.cc', |
| 45 'renderer_main.cc', | 44 'renderer_main.cc', |
| 45 'user_script_slave.cc', |
| 46 'visitedlink_slave.cc', | 46 'visitedlink_slave.cc', |
| 47 'webmediaplayer_delegate_impl.cc', | 47 'webmediaplayer_delegate_impl.cc', |
| 48 'webplugin_delegate_proxy.cc', | 48 'webplugin_delegate_proxy.cc', |
| 49 'automation/dom_automation_controller.cc', | 49 'automation/dom_automation_controller.cc', |
| 50 | 50 |
| 51 'net/render_dns_master.cc', | 51 'net/render_dns_master.cc', |
| 52 'net/render_dns_queue.cc', | 52 'net/render_dns_queue.cc', |
| 53 ] | 53 ] |
| 54 | 54 |
| 55 # TODO(port): Port these to Linux | 55 # TODO(port): Port these to Linux |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 | 93 |
| 94 # TODO(port): Enable for Mac. | 94 # TODO(port): Enable for Mac. |
| 95 if not env.Bit('mac'): | 95 if not env.Bit('mac'): |
| 96 env.ChromeLibrary('renderer', input_files) | 96 env.ChromeLibrary('renderer', input_files) |
| 97 | 97 |
| 98 env.ChromeMSVSProject('$CHROME_DIR/renderer/renderer.vcproj', | 98 env.ChromeMSVSProject('$CHROME_DIR/renderer/renderer.vcproj', |
| 99 dependencies = [ | 99 dependencies = [ |
| 100 '$CHROME_DIR/app/generated_resources.vcproj', | 100 '$CHROME_DIR/app/generated_resources.vcproj', |
| 101 ], | 101 ], |
| 102 guid='{9301A569-5D2B-4D11-9332-B1E30AEACB8D}') | 102 guid='{9301A569-5D2B-4D11-9332-B1E30AEACB8D}') |
| OLD | NEW |