| OLD | NEW |
| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 # Remove from the list files that haven't yet been made portable to Linux. | 118 # Remove from the list files that haven't yet been made portable to Linux. |
| 119 remove_files = [ | 119 remove_files = [ |
| 120 '$PORT_DIR/platform/graphics/FontCustomPlatformData.cpp', | 120 '$PORT_DIR/platform/graphics/FontCustomPlatformData.cpp', |
| 121 ] | 121 ] |
| 122 for remove in remove_files: | 122 for remove in remove_files: |
| 123 input_files.remove(remove) | 123 input_files.remove(remove) |
| 124 | 124 |
| 125 # Linux specific implementations | 125 # Linux specific implementations |
| 126 input_files.extend([ | 126 input_files.extend([ |
| 127 '$PORT_DIR/platform/chromium/ScreenLinux.cpp', | 127 '$PORT_DIR/platform/chromium/ScreenLinux.cpp', |
| 128 '$PORT_DIR/platform/chromium/EditorLinux.cpp', |
| 129 '$PORT_DIR/platform/chromium/IconLinux.cpp', |
| 130 '$PORT_DIR/platform/graphics/chromium/GlyphPageTreeNodeLinux.cpp', |
| 128 '$PORT_DIR/platform/chromium/PasteboardLinux.cpp', | 131 '$PORT_DIR/platform/chromium/PasteboardLinux.cpp', |
| 129 ]) | 132 ]) |
| 130 | 133 |
| 131 if env['PLATFORM'] == 'darwin': | 134 if env['PLATFORM'] == 'darwin': |
| 132 # Remove from the list files that haven't yet been made portable to Mac. | 135 # Remove from the list files that haven't yet been made portable to Mac. |
| 133 remove_files = [ | 136 remove_files = [ |
| 134 '$PORT_DIR/page/chromium/AXObjectCacheChromium.cpp', | 137 '$PORT_DIR/page/chromium/AXObjectCacheChromium.cpp', |
| 135 '$PORT_DIR/page/chromium/EventHandlerChromium.cpp', | 138 '$PORT_DIR/page/chromium/EventHandlerChromium.cpp', |
| 136 '$PORT_DIR/platform/chromium/CursorChromium.cpp', | 139 '$PORT_DIR/platform/chromium/CursorChromium.cpp', |
| 137 '$PORT_DIR/platform/chromium/DragDataChromium.cpp', | 140 '$PORT_DIR/platform/chromium/DragDataChromium.cpp', |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 '$PORT_DIR/bridge/KJSBridge.cpp', | 204 '$PORT_DIR/bridge/KJSBridge.cpp', |
| 202 '$PORT_DIR/bridge/ScriptControllerKJS.cpp', | 205 '$PORT_DIR/bridge/ScriptControllerKJS.cpp', |
| 203 ]) | 206 ]) |
| 204 else: | 207 else: |
| 205 input_files.extend([ | 208 input_files.extend([ |
| 206 '$PORT_DIR/bindings/v8/ScriptController.cpp', | 209 '$PORT_DIR/bindings/v8/ScriptController.cpp', |
| 207 '$PORT_DIR/bridge/ExceptionContextV8.cpp', | 210 '$PORT_DIR/bridge/ExceptionContextV8.cpp', |
| 208 ]) | 211 ]) |
| 209 | 212 |
| 210 env.ChromeStaticLibrary("port", input_files) | 213 env.ChromeStaticLibrary("port", input_files) |
| OLD | NEW |