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

Side by Side Diff: webkit/glue/SConscript

Issue 7633: First stab at webinputevent_linux.cc. Coverts GDK events to (Closed)
Patch Set: portish Created 12 years, 2 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 | « webkit/SConscript.port ('k') | webkit/glue/event_conversion.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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 'webplugin_impl.cc', 61 'webplugin_impl.cc',
62 'webtextinput_impl.cc', 62 'webtextinput_impl.cc',
63 'weburlrequest_impl.cc', 63 'weburlrequest_impl.cc',
64 'webwidget_impl.cc', 64 'webwidget_impl.cc',
65 'webview_impl.cc', 65 'webview_impl.cc',
66 ] 66 ]
67 67
68 if env['PLATFORM'] == 'win32': 68 if env['PLATFORM'] == 'win32':
69 # TODO(port): These extra files aren't win32-specific, they've just not been 69 # TODO(port): These extra files aren't win32-specific, they've just not been
70 # tested on other platforms yet. 70 # tested on other platforms yet.
71 input_files.append([ 71 input_files.extend([
72 '$PENDING_DIR/AccessibleBase.cpp', 72 '$PENDING_DIR/AccessibleBase.cpp',
73 '$PENDING_DIR/AccessibleDocument.cpp', 73 '$PENDING_DIR/AccessibleDocument.cpp',
74 'glue_accessibility.cc', 74 'glue_accessibility.cc',
75 'plugins/mozilla_extensions.cc', 75 'plugins/mozilla_extensions.cc',
76 'plugins/plugin_host.cc', 76 'plugins/plugin_host.cc',
77 'plugins/plugin_instance.cc', 77 'plugins/plugin_instance.cc',
78 'plugins/plugin_lib.cc', 78 'plugins/plugin_lib.cc',
79 'plugins/plugin_list.cc', 79 'plugins/plugin_list.cc',
80 'plugins/plugin_stream.cc', 80 'plugins/plugin_stream.cc',
81 'plugins/plugin_stream_url.cc', 81 'plugins/plugin_stream_url.cc',
82 'plugins/plugin_string_stream.cc', 82 'plugins/plugin_string_stream.cc',
83 'plugins/webplugin_delegate_impl.cc', 83 'plugins/webplugin_delegate_impl.cc',
84 'webdropdata.cc', 84 'webdropdata.cc',
85 'webinputevent_win.cc',
86 ]) 85 ])
87 86
87 if env['PLATFORM'] == 'win32':
88 input_files.append('webinputevent_win.cc')
89 elif env['PLATFORM'] == 'posix':
90 input_files.append('webinputevent_linux.cc')
91
88 env.ChromeStaticLibrary('glue', input_files) 92 env.ChromeStaticLibrary('glue', input_files)
OLDNEW
« no previous file with comments | « webkit/SConscript.port ('k') | webkit/glue/event_conversion.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698