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

Side by Side Diff: webkit/glue/SConscript

Issue 11427: Cursor support including custom cursors (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
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 | Annotate | Revision Log
« no previous file with comments | « no previous file | webkit/glue/webcursor.h » ('j') | webkit/glue/webcursor.h » ('J')
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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 'webcursor_win.cc', 107 'webcursor_win.cc',
108 'webinputevent_win.cc', 108 'webinputevent_win.cc',
109 'webkit_glue_win.cc', 109 'webkit_glue_win.cc',
110 ]) 110 ])
111 elif env['PLATFORM'] == 'posix': 111 elif env['PLATFORM'] == 'posix':
112 input_files.extend([ 112 input_files.extend([
113 'webcursor_gtk.cc', 113 'webcursor_gtk.cc',
114 'webinputevent_linux.cc', 114 'webinputevent_linux.cc',
115 'webkit_glue_gtk.cc', 115 'webkit_glue_gtk.cc',
116 ]) 116 ])
117 elif env['PLATFORM'] == 'darwin':
118 input_files.extend([
119 'webcursor_mac.mm',
120 ])
117 121
118 if env['PLATFORM'] in ('posix', 'darwin'): 122 if env['PLATFORM'] in ('posix', 'darwin'):
119 input_files.extend([ 123 input_files.extend([
120 'plugins/plugin_stream_posix.cc', 124 'plugins/plugin_stream_posix.cc',
121 ]) 125 ])
122 126
123 env.ChromeStaticLibrary('glue', input_files) 127 env.ChromeStaticLibrary('glue', input_files)
124 128
OLDNEW
« no previous file with comments | « no previous file | webkit/glue/webcursor.h » ('j') | webkit/glue/webcursor.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698