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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 '$PORT_DIR/platform/graphics/FontPlatformDataWin.cpp', | 162 '$PORT_DIR/platform/graphics/FontPlatformDataWin.cpp', |
163 '$PORT_DIR/platform/graphics/FontUtilsWin.cpp', | 163 '$PORT_DIR/platform/graphics/FontUtilsWin.cpp', |
164 '$PORT_DIR/platform/graphics/FontWin.cpp', | 164 '$PORT_DIR/platform/graphics/FontWin.cpp', |
165 '$PORT_DIR/platform/graphics/GlyphPageTreeNodeWin.cpp', | 165 '$PORT_DIR/platform/graphics/GlyphPageTreeNodeWin.cpp', |
166 '$PORT_DIR/platform/graphics/IconWin.cpp', | 166 '$PORT_DIR/platform/graphics/IconWin.cpp', |
167 '$PORT_DIR/platform/graphics/SimpleFontDataWin.cpp', | 167 '$PORT_DIR/platform/graphics/SimpleFontDataWin.cpp', |
168 '$PORT_DIR/platform/graphics/ThemeHelperWin.cpp', | 168 '$PORT_DIR/platform/graphics/ThemeHelperWin.cpp', |
169 '$PORT_DIR/platform/graphics/UniscribeHelper.cpp', | 169 '$PORT_DIR/platform/graphics/UniscribeHelper.cpp', |
170 '$PORT_DIR/platform/graphics/UniscribeHelperTextRun.cpp', | 170 '$PORT_DIR/platform/graphics/UniscribeHelperTextRun.cpp', |
171 | 171 |
172 '$PORT_DIR/platform/graphics/skia/public/BitmapPlatformDeviceWin.cpp', | |
173 '$PORT_DIR/platform/graphics/skia/public/PlatformCanvasWin.cpp', | |
174 '$PORT_DIR/platform/graphics/skia/public/PlatformDeviceWin.cpp', | |
175 '$PORT_DIR/platform/graphics/skia/public/VectorCanvas.cpp', | |
176 '$PORT_DIR/platform/graphics/skia/public/VectorDevice.cpp', | |
177 | |
178 '$PORT_DIR/rendering/RenderThemeWin.cpp', | 172 '$PORT_DIR/rendering/RenderThemeWin.cpp', |
179 ]) | 173 ]) |
180 | 174 |
181 if env['PLATFORM'] == 'posix': | 175 if env['PLATFORM'] == 'posix': |
182 input_files.extend([ | 176 input_files.extend([ |
183 '$PORT_DIR/platform/chromium/FileSystemPosix.cpp', | 177 '$PORT_DIR/platform/chromium/FileSystemPosix.cpp', |
184 '$PORT_DIR/platform/chromium/SoundPosix.cpp', | 178 '$PORT_DIR/platform/chromium/SoundPosix.cpp', |
185 '$PORT_DIR/platform/chromium/KeyCodeConversionGtk.cpp', | 179 '$PORT_DIR/platform/chromium/KeyCodeConversionGtk.cpp', |
186 '$PORT_DIR/platform/graphics/chromium/FontLinux.cpp', | 180 '$PORT_DIR/platform/graphics/chromium/FontLinux.cpp', |
187 '$PORT_DIR/platform/graphics/chromium/FontCacheLinux.cpp', | 181 '$PORT_DIR/platform/graphics/chromium/FontCacheLinux.cpp', |
(...skipping 21 matching lines...) Expand all Loading... |
209 input_files.extend([ | 203 input_files.extend([ |
210 '$PORT_DIR/bridge/KJSBridge.cpp', | 204 '$PORT_DIR/bridge/KJSBridge.cpp', |
211 '$PORT_DIR/bridge/ScriptControllerKJS.cpp', | 205 '$PORT_DIR/bridge/ScriptControllerKJS.cpp', |
212 ]) | 206 ]) |
213 else: | 207 else: |
214 input_files.extend([ | 208 input_files.extend([ |
215 '$PORT_DIR/bindings/v8/ScriptController.cpp', | 209 '$PORT_DIR/bindings/v8/ScriptController.cpp', |
216 ]) | 210 ]) |
217 | 211 |
218 env.ChromeStaticLibrary("port", input_files) | 212 env.ChromeStaticLibrary("port", input_files) |
OLD | NEW |