diff options
author | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-21 17:20:58 +0000 |
---|---|---|
committer | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-21 17:20:58 +0000 |
commit | a072707908cfd43ae2ff067395cf251fb77e2df6 (patch) | |
tree | ef4d4e338f0b11212de3c4f2bb969d6a61abacc8 /webkit | |
parent | a1a19501e82ec6f5a78865901c08448db34ac3f2 (diff) | |
download | chromium_src-a072707908cfd43ae2ff067395cf251fb77e2df6.zip chromium_src-a072707908cfd43ae2ff067395cf251fb77e2df6.tar.gz chromium_src-a072707908cfd43ae2ff067395cf251fb77e2df6.tar.bz2 |
Split up webkit/SConscript.port into separate mac/linux sections
patch from WildFox (TorchMobile, Inc) in
http://codereview.chromium.org/7295
Review URL: http://codereview.chromium.org/8013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3660 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/SConscript.port | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/webkit/SConscript.port b/webkit/SConscript.port index 5f33adb..23fd77a 100644 --- a/webkit/SConscript.port +++ b/webkit/SConscript.port @@ -113,9 +113,26 @@ input_files = [ '$PORT_DIR/plugins/chromium/PluginDataChromium.cpp', ] -if env['PLATFORM'] in ('posix', 'darwin'): - # Remove from the list files that haven't yet been made portable - # to Mac and Linux. +if env['PLATFORM'] == 'posix': + # Remove from the list files that haven't yet been made portable to Linux. + remove_files = [ + '$PORT_DIR/page/chromium/AXObjectCacheChromium.cpp', + '$PORT_DIR/page/chromium/EventHandlerChromium.cpp', + '$PORT_DIR/platform/chromium/CursorChromium.cpp', + '$PORT_DIR/platform/chromium/DragDataChromium.cpp', + '$PORT_DIR/platform/chromium/PlatformScrollBarChromium.cpp', + '$PORT_DIR/platform/chromium/PopupMenuChromium.cpp', + '$PORT_DIR/platform/chromium/ScrollViewChromium.cpp', + '$PORT_DIR/platform/chromium/WidgetChromium.cpp', + '$PORT_DIR/platform/graphics/FontCustomPlatformData.cpp', + '$PORT_DIR/platform/graphics/ImageSkia.cpp', + '$PORT_DIR/platform/graphics/SkGraphicsContext.cpp', + ] + for remove in remove_files: + input_files.remove(remove) + +if env['PLATFORM'] == 'darwin': + # Remove from the list files that haven't yet been made portable to Mac. remove_files = [ '$PORT_DIR/page/chromium/AXObjectCacheChromium.cpp', '$PORT_DIR/page/chromium/EventHandlerChromium.cpp', |