| 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 '$PORT_DIR/platform/graphics/GlyphPageTreeNodeWin.cpp', | 168 '$PORT_DIR/platform/graphics/GlyphPageTreeNodeWin.cpp', |
| 169 '$PORT_DIR/platform/graphics/IconWin.cpp', | 169 '$PORT_DIR/platform/graphics/IconWin.cpp', |
| 170 '$PORT_DIR/platform/graphics/SimpleFontDataWin.cpp', | 170 '$PORT_DIR/platform/graphics/SimpleFontDataWin.cpp', |
| 171 '$PORT_DIR/rendering/RenderThemeWin.cpp', | 171 '$PORT_DIR/rendering/RenderThemeWin.cpp', |
| 172 ]) | 172 ]) |
| 173 | 173 |
| 174 if env['PLATFORM'] == 'posix': | 174 if env['PLATFORM'] == 'posix': |
| 175 input_files.extend([ | 175 input_files.extend([ |
| 176 '$PORT_DIR/platform/chromium/FileSystemPosix.cpp', | 176 '$PORT_DIR/platform/chromium/FileSystemPosix.cpp', |
| 177 '$PORT_DIR/platform/chromium/SoundPosix.cpp', | 177 '$PORT_DIR/platform/chromium/SoundPosix.cpp', |
| 178 '$PORT_DIR/platform/chromium/KeyCodeConversionGtk.cpp', |
| 178 '$PORT_DIR/platform/graphics/chromium/FontLinux.cpp', | 179 '$PORT_DIR/platform/graphics/chromium/FontLinux.cpp', |
| 179 '$PORT_DIR/platform/graphics/chromium/FontCacheLinux.cpp', | 180 '$PORT_DIR/platform/graphics/chromium/FontCacheLinux.cpp', |
| 180 '$PORT_DIR/platform/graphics/chromium/FontPlatformDataLinux.cpp', | 181 '$PORT_DIR/platform/graphics/chromium/FontPlatformDataLinux.cpp', |
| 181 '$PORT_DIR/platform/graphics/chromium/SimpleFontDataLinux.cpp', | 182 '$PORT_DIR/platform/graphics/chromium/SimpleFontDataLinux.cpp', |
| 182 ]) | 183 ]) |
| 183 | 184 |
| 184 if env['PLATFORM'] == 'darwin': | 185 if env['PLATFORM'] == 'darwin': |
| 185 input_files.extend([ | 186 input_files.extend([ |
| 186 '$PORT_DIR/bridge/mac/FrameMac.mm', | 187 '$PORT_DIR/bridge/mac/FrameMac.mm', |
| 187 '$PORT_DIR/page/EventHandlerMac.mm', | 188 '$PORT_DIR/page/EventHandlerMac.mm', |
| (...skipping 14 matching lines...) Expand all Loading... |
| 202 '$PORT_DIR/bridge/KJSBridge.cpp', | 203 '$PORT_DIR/bridge/KJSBridge.cpp', |
| 203 '$PORT_DIR/bridge/ScriptControllerKJS.cpp', | 204 '$PORT_DIR/bridge/ScriptControllerKJS.cpp', |
| 204 ]) | 205 ]) |
| 205 else: | 206 else: |
| 206 input_files.extend([ | 207 input_files.extend([ |
| 207 '$PORT_DIR/bindings/v8/ScriptController.cpp', | 208 '$PORT_DIR/bindings/v8/ScriptController.cpp', |
| 208 '$PORT_DIR/bridge/ExceptionContextV8.cpp', | 209 '$PORT_DIR/bridge/ExceptionContextV8.cpp', |
| 209 ]) | 210 ]) |
| 210 | 211 |
| 211 env.ChromeStaticLibrary("port", input_files) | 212 env.ChromeStaticLibrary("port", input_files) |
| OLD | NEW |