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

Side by Side Diff: webkit/glue/SConscript

Issue 8839: * Revert "Start writing the GTK code for test_shell." (Closed)
Patch Set: Created 12 years, 1 month 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 | « base/gfx/platform_canvas_linux.cc ('k') | webkit/tools/test_shell/gtk/test_shell.cc » ('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 if env['PLATFORM'] == 'win32': 9 if env['PLATFORM'] == 'win32':
10 env.Append( 10 env.Append(
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 'webhistoryitem_impl.cc', 63 'webhistoryitem_impl.cc',
64 'webkit_glue.cc', 64 'webkit_glue.cc',
65 'webplugin_impl.cc', 65 'webplugin_impl.cc',
66 'webtextinput_impl.cc', 66 'webtextinput_impl.cc',
67 'weburlrequest_impl.cc', 67 'weburlrequest_impl.cc',
68 'webwidget_impl.cc', 68 'webwidget_impl.cc',
69 'webview_impl.cc', 69 'webview_impl.cc',
70 ] 70 ]
71 71
72 if env['PLATFORM'] == 'posix': 72 if env['PLATFORM'] == 'posix':
73 # TODO(port): until we have plugin support for Linux, these files aren't 73 # TODO(port): until we have plugin support for Linux, these files aren't built .
74 # built.
75 remove_files = [ 74 remove_files = [
76 'plugins/plugin_host.cc', 75 'plugins/plugin_host.cc',
77 'plugins/plugin_instance.cc', 76 'plugins/plugin_instance.cc',
78 'plugins/plugin_string_stream.cc', 77 'plugins/plugin_string_stream.cc',
79 'plugins/plugin_stream_url.cc', 78 'plugins/plugin_stream_url.cc',
80 ] 79 ]
81 80
82 for file in remove_files: 81 for file in remove_files:
83 input_files.remove(file) 82 input_files.remove(file)
84 83
(...skipping 11 matching lines...) Expand all
96 'plugins/webplugin_delegate_impl.cc', 95 'plugins/webplugin_delegate_impl.cc',
97 'webdropdata.cc', 96 'webdropdata.cc',
98 ]) 97 ])
99 98
100 if env['PLATFORM'] == 'win32': 99 if env['PLATFORM'] == 'win32':
101 input_files.append('webinputevent_win.cc') 100 input_files.append('webinputevent_win.cc')
102 elif env['PLATFORM'] == 'posix': 101 elif env['PLATFORM'] == 'posix':
103 input_files.append('webinputevent_linux.cc') 102 input_files.append('webinputevent_linux.cc')
104 103
105 env.ChromeStaticLibrary('glue', input_files) 104 env.ChromeStaticLibrary('glue', input_files)
OLDNEW
« no previous file with comments | « base/gfx/platform_canvas_linux.cc ('k') | webkit/tools/test_shell/gtk/test_shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698