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

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

Issue 17281: This is a rename of the term 'Greasemonkey' to 'user script' in Chromium. (Closed)
Patch Set: Fix indent Created 11 years, 11 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
« 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 16 matching lines...) Expand all
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
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}')
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