| 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 if env['PLATFORM'] == 'win32': | 152 if env['PLATFORM'] == 'win32': |
| 153 # These are win32 specific and will never be ported. | 153 # These are win32 specific and will never be ported. |
| 154 input_files.extend([ | 154 input_files.extend([ |
| 155 '$PORT_DIR/platform/chromium/FileSystemChromiumWin.cpp', | 155 '$PORT_DIR/platform/chromium/FileSystemChromiumWin.cpp', |
| 156 '$PORT_DIR/platform/chromium/ScrollBarThemeChromiumWin.cpp', | 156 '$PORT_DIR/platform/chromium/ScrollBarThemeChromiumWin.cpp', |
| 157 '$PORT_DIR/platform/UniscribeStateTextRun.cpp', | 157 '$PORT_DIR/platform/UniscribeStateTextRun.cpp', |
| 158 '$PORT_DIR/platform/win/BString.cpp', | 158 '$PORT_DIR/platform/win/BString.cpp', |
| 159 '$PORT_DIR/platform/win/SoundWin.cpp', | 159 '$PORT_DIR/platform/win/SoundWin.cpp', |
| 160 '$PORT_DIR/platform/graphics/FontCacheWin.cpp', | 160 '$PORT_DIR/platform/graphics/FontCacheWin.cpp', |
| 161 '$PORT_DIR/platform/graphics/FontPlatformDataWin.cpp', | 161 '$PORT_DIR/platform/graphics/FontPlatformDataWin.cpp', |
| 162 '$PORT_DIR/platform/graphics/FontUtilsWin.cpp', |
| 162 '$PORT_DIR/platform/graphics/FontWin.cpp', | 163 '$PORT_DIR/platform/graphics/FontWin.cpp', |
| 163 '$PORT_DIR/platform/graphics/GlyphPageTreeNodeWin.cpp', | 164 '$PORT_DIR/platform/graphics/GlyphPageTreeNodeWin.cpp', |
| 164 '$PORT_DIR/platform/graphics/IconWin.cpp', | 165 '$PORT_DIR/platform/graphics/IconWin.cpp', |
| 165 '$PORT_DIR/platform/graphics/SimpleFontDataWin.cpp', | 166 '$PORT_DIR/platform/graphics/SimpleFontDataWin.cpp', |
| 166 '$PORT_DIR/platform/graphics/ThemeHelperWin.cpp', | 167 '$PORT_DIR/platform/graphics/ThemeHelperWin.cpp', |
| 168 '$PORT_DIR/platform/graphics/UniscribeHelper.cpp', |
| 169 '$PORT_DIR/platform/graphics/UniscribeHelperTextRun.cpp', |
| 167 '$PORT_DIR/rendering/RenderThemeWin.cpp', | 170 '$PORT_DIR/rendering/RenderThemeWin.cpp', |
| 168 ]) | 171 ]) |
| 169 | 172 |
| 170 if env['PLATFORM'] == 'posix': | 173 if env['PLATFORM'] == 'posix': |
| 171 input_files.extend([ | 174 input_files.extend([ |
| 172 '$PORT_DIR/platform/chromium/FileSystemPosix.cpp', | 175 '$PORT_DIR/platform/chromium/FileSystemPosix.cpp', |
| 173 '$PORT_DIR/platform/chromium/SoundPosix.cpp', | 176 '$PORT_DIR/platform/chromium/SoundPosix.cpp', |
| 174 '$PORT_DIR/platform/chromium/KeyCodeConversionGtk.cpp', | 177 '$PORT_DIR/platform/chromium/KeyCodeConversionGtk.cpp', |
| 175 '$PORT_DIR/platform/graphics/chromium/FontLinux.cpp', | 178 '$PORT_DIR/platform/graphics/chromium/FontLinux.cpp', |
| 176 '$PORT_DIR/platform/graphics/chromium/FontCacheLinux.cpp', | 179 '$PORT_DIR/platform/graphics/chromium/FontCacheLinux.cpp', |
| (...skipping 21 matching lines...) Expand all Loading... |
| 198 input_files.extend([ | 201 input_files.extend([ |
| 199 '$PORT_DIR/bridge/KJSBridge.cpp', | 202 '$PORT_DIR/bridge/KJSBridge.cpp', |
| 200 '$PORT_DIR/bridge/ScriptControllerKJS.cpp', | 203 '$PORT_DIR/bridge/ScriptControllerKJS.cpp', |
| 201 ]) | 204 ]) |
| 202 else: | 205 else: |
| 203 input_files.extend([ | 206 input_files.extend([ |
| 204 '$PORT_DIR/bindings/v8/ScriptController.cpp', | 207 '$PORT_DIR/bindings/v8/ScriptController.cpp', |
| 205 ]) | 208 ]) |
| 206 | 209 |
| 207 env.ChromeStaticLibrary("port", input_files) | 210 env.ChromeStaticLibrary("port", input_files) |
| OLD | NEW |