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

Side by Side Diff: webkit/SConscript.port

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 | « no previous file | webkit/glue/SConscript » ('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.Prepend( 10 env.Prepend(
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 '$PORT_DIR/platform/graphics/GlyphPageTreeNodeWin.cpp', 168 '$PORT_DIR/platform/graphics/GlyphPageTreeNodeWin.cpp',
169 '$PORT_DIR/platform/graphics/IconWin.cpp', 169 '$PORT_DIR/platform/graphics/IconWin.cpp',
170 '$PORT_DIR/platform/graphics/SimpleFontDataWin.cpp', 170 '$PORT_DIR/platform/graphics/SimpleFontDataWin.cpp',
171 '$PORT_DIR/rendering/RenderThemeWin.cpp', 171 '$PORT_DIR/rendering/RenderThemeWin.cpp',
172 ]) 172 ])
173 173
174 if env['PLATFORM'] == 'posix': 174 if env['PLATFORM'] == 'posix':
175 input_files.extend([ 175 input_files.extend([
176 '$PORT_DIR/platform/chromium/FileSystemPosix.cpp', 176 '$PORT_DIR/platform/chromium/FileSystemPosix.cpp',
177 '$PORT_DIR/platform/chromium/SoundPosix.cpp', 177 '$PORT_DIR/platform/chromium/SoundPosix.cpp',
178 '$PORT_DIR/platform/chromium/KeyCodeConversionGtk.cpp',
178 '$PORT_DIR/platform/graphics/chromium/FontLinux.cpp', 179 '$PORT_DIR/platform/graphics/chromium/FontLinux.cpp',
179 '$PORT_DIR/platform/graphics/chromium/FontCacheLinux.cpp', 180 '$PORT_DIR/platform/graphics/chromium/FontCacheLinux.cpp',
180 '$PORT_DIR/platform/graphics/chromium/FontPlatformDataLinux.cpp', 181 '$PORT_DIR/platform/graphics/chromium/FontPlatformDataLinux.cpp',
181 '$PORT_DIR/platform/graphics/chromium/SimpleFontDataLinux.cpp', 182 '$PORT_DIR/platform/graphics/chromium/SimpleFontDataLinux.cpp',
182 ]) 183 ])
183 184
184 if env['PLATFORM'] == 'darwin': 185 if env['PLATFORM'] == 'darwin':
185 input_files.extend([ 186 input_files.extend([
186 '$PORT_DIR/bridge/mac/FrameMac.mm', 187 '$PORT_DIR/bridge/mac/FrameMac.mm',
187 '$PORT_DIR/page/EventHandlerMac.mm', 188 '$PORT_DIR/page/EventHandlerMac.mm',
(...skipping 14 matching lines...) Expand all
202 '$PORT_DIR/bridge/KJSBridge.cpp', 203 '$PORT_DIR/bridge/KJSBridge.cpp',
203 '$PORT_DIR/bridge/ScriptControllerKJS.cpp', 204 '$PORT_DIR/bridge/ScriptControllerKJS.cpp',
204 ]) 205 ])
205 else: 206 else:
206 input_files.extend([ 207 input_files.extend([
207 '$PORT_DIR/bindings/v8/ScriptController.cpp', 208 '$PORT_DIR/bindings/v8/ScriptController.cpp',
208 '$PORT_DIR/bridge/ExceptionContextV8.cpp', 209 '$PORT_DIR/bridge/ExceptionContextV8.cpp',
209 ]) 210 ])
210 211
211 env.ChromeStaticLibrary("port", input_files) 212 env.ChromeStaticLibrary("port", input_files)
OLDNEW
« no previous file with comments | « no previous file | webkit/glue/SConscript » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698