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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/SConscript.port ('k') | webkit/glue/event_conversion.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/SConscript
diff --git a/webkit/glue/SConscript b/webkit/glue/SConscript
index f1a4c38a38cc74a18d5e34bd5b267d9e5099fb9c..1ad5fcbe8a788d5af24611054965956db481cca4 100644
--- a/webkit/glue/SConscript
+++ b/webkit/glue/SConscript
@@ -68,7 +68,7 @@ input_files = [
if env['PLATFORM'] == 'win32':
# TODO(port): These extra files aren't win32-specific, they've just not been
# tested on other platforms yet.
- input_files.append([
+ input_files.extend([
'$PENDING_DIR/AccessibleBase.cpp',
'$PENDING_DIR/AccessibleDocument.cpp',
'glue_accessibility.cc',
@@ -82,7 +82,11 @@ if env['PLATFORM'] == 'win32':
'plugins/plugin_string_stream.cc',
'plugins/webplugin_delegate_impl.cc',
'webdropdata.cc',
- 'webinputevent_win.cc',
])
+if env['PLATFORM'] == 'win32':
+ input_files.append('webinputevent_win.cc')
+elif env['PLATFORM'] == 'posix':
+ input_files.append('webinputevent_linux.cc')
+
env.ChromeStaticLibrary('glue', input_files)
« 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