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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 remove_files = [ | 140 remove_files = [ |
141 '$PORT_DIR/page/chromium/AXObjectCacheChromium.cpp', | 141 '$PORT_DIR/page/chromium/AXObjectCacheChromium.cpp', |
142 '$PORT_DIR/page/chromium/EventHandlerChromium.cpp', | 142 '$PORT_DIR/page/chromium/EventHandlerChromium.cpp', |
143 '$PORT_DIR/platform/chromium/CursorChromium.cpp', | 143 '$PORT_DIR/platform/chromium/CursorChromium.cpp', |
144 '$PORT_DIR/platform/chromium/DragDataChromium.cpp', | 144 '$PORT_DIR/platform/chromium/DragDataChromium.cpp', |
145 '$PORT_DIR/platform/chromium/PopupMenuChromium.cpp', | 145 '$PORT_DIR/platform/chromium/PopupMenuChromium.cpp', |
146 '$PORT_DIR/platform/chromium/WidgetChromium.cpp', | 146 '$PORT_DIR/platform/chromium/WidgetChromium.cpp', |
147 '$PORT_DIR/platform/chromium/ScrollbarThemeChromium.cpp', | 147 '$PORT_DIR/platform/chromium/ScrollbarThemeChromium.cpp', |
148 '$PORT_DIR/platform/graphics/FontCustomPlatformData.cpp', | 148 '$PORT_DIR/platform/graphics/FontCustomPlatformData.cpp', |
149 '$PORT_DIR/platform/graphics/ImageSkia.cpp', | 149 '$PORT_DIR/platform/graphics/ImageSkia.cpp', |
150 | |
151 '$PORT_DIR/platform/graphics/skia/public/PlatformCanvasMac.cpp', | |
152 '$PORT_DIR/platform/graphics/skia/public/PlatformDeviceMac.cpp', | |
153 ] | 150 ] |
154 for remove in remove_files: | 151 for remove in remove_files: |
155 input_files.remove(remove) | 152 input_files.remove(remove) |
156 | 153 |
157 if env['PLATFORM'] == 'win32': | 154 if env['PLATFORM'] == 'win32': |
158 # These are win32 specific and will never be ported. | 155 # These are win32 specific and will never be ported. |
159 input_files.extend([ | 156 input_files.extend([ |
160 '$PORT_DIR/platform/chromium/FileSystemChromiumWin.cpp', | 157 '$PORT_DIR/platform/chromium/FileSystemChromiumWin.cpp', |
161 '$PORT_DIR/platform/chromium/ScrollBarThemeChromiumWin.cpp', | 158 '$PORT_DIR/platform/chromium/ScrollBarThemeChromiumWin.cpp', |
162 '$PORT_DIR/platform/win/BString.cpp', | 159 '$PORT_DIR/platform/win/BString.cpp', |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 input_files.extend([ | 209 input_files.extend([ |
213 '$PORT_DIR/bridge/KJSBridge.cpp', | 210 '$PORT_DIR/bridge/KJSBridge.cpp', |
214 '$PORT_DIR/bridge/ScriptControllerKJS.cpp', | 211 '$PORT_DIR/bridge/ScriptControllerKJS.cpp', |
215 ]) | 212 ]) |
216 else: | 213 else: |
217 input_files.extend([ | 214 input_files.extend([ |
218 '$PORT_DIR/bindings/v8/ScriptController.cpp', | 215 '$PORT_DIR/bindings/v8/ScriptController.cpp', |
219 ]) | 216 ]) |
220 | 217 |
221 env.ChromeStaticLibrary("port", input_files) | 218 env.ChromeStaticLibrary("port", input_files) |
OLD | NEW |