| 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.Append( | 10 env.Append( |
| (...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 '$WEBCORE_DIR/platform/ScrollView.cpp', | 406 '$WEBCORE_DIR/platform/ScrollView.cpp', |
| 407 '$WEBCORE_DIR/platform/SharedBuffer.cpp', | 407 '$WEBCORE_DIR/platform/SharedBuffer.cpp', |
| 408 '$WEBCORE_DIR/platform/Timer.cpp', | 408 '$WEBCORE_DIR/platform/Timer.cpp', |
| 409 '$WEBCORE_DIR/platform/Widget.cpp', | 409 '$WEBCORE_DIR/platform/Widget.cpp', |
| 410 | 410 |
| 411 '$WEBCORE_DIR/platform/graphics/AffineTransform.cpp', | 411 '$WEBCORE_DIR/platform/graphics/AffineTransform.cpp', |
| 412 '$WEBCORE_DIR/platform/graphics/BitmapImage.cpp', | 412 '$WEBCORE_DIR/platform/graphics/BitmapImage.cpp', |
| 413 '$WEBCORE_DIR/platform/graphics/Color.cpp', | 413 '$WEBCORE_DIR/platform/graphics/Color.cpp', |
| 414 '$WEBCORE_DIR/platform/graphics/FloatPoint.cpp', | 414 '$WEBCORE_DIR/platform/graphics/FloatPoint.cpp', |
| 415 '$WEBCORE_DIR/platform/graphics/FloatPoint3D.cpp', | 415 '$WEBCORE_DIR/platform/graphics/FloatPoint3D.cpp', |
| 416 '$WEBCORE_DIR/platform/graphics/FloatQuad.cpp', |
| 416 '$WEBCORE_DIR/platform/graphics/FloatRect.cpp', | 417 '$WEBCORE_DIR/platform/graphics/FloatRect.cpp', |
| 417 '$WEBCORE_DIR/platform/graphics/FloatSize.cpp', | 418 '$WEBCORE_DIR/platform/graphics/FloatSize.cpp', |
| 418 '$WEBCORE_DIR/platform/graphics/Font.cpp', | 419 '$WEBCORE_DIR/platform/graphics/Font.cpp', |
| 419 '$WEBCORE_DIR/platform/graphics/FontData.cpp', | 420 '$WEBCORE_DIR/platform/graphics/FontData.cpp', |
| 420 '$WEBCORE_DIR/platform/graphics/FontFallbackList.cpp', | 421 '$WEBCORE_DIR/platform/graphics/FontFallbackList.cpp', |
| 421 '$WEBCORE_DIR/platform/graphics/FontDescription.cpp', | 422 '$WEBCORE_DIR/platform/graphics/FontDescription.cpp', |
| 422 '$WEBCORE_DIR/platform/graphics/FontFamily.cpp', | 423 '$WEBCORE_DIR/platform/graphics/FontFamily.cpp', |
| 423 '$WEBCORE_DIR/platform/graphics/FontCache.cpp', | 424 '$WEBCORE_DIR/platform/graphics/FontCache.cpp', |
| 424 '$WEBCORE_DIR/platform/graphics/GeneratedImage.cpp', | 425 '$WEBCORE_DIR/platform/graphics/GeneratedImage.cpp', |
| 425 '$WEBCORE_DIR/platform/graphics/GlyphPageTreeNode.cpp', | 426 '$WEBCORE_DIR/platform/graphics/GlyphPageTreeNode.cpp', |
| (...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 824 env_p = env.Clone() | 825 env_p = env.Clone() |
| 825 env_p.Append(CCFLAGS='/Ylwebcore') | 826 env_p.Append(CCFLAGS='/Ylwebcore') |
| 826 pch, obj = env_p.PCH('$OBJ_ROOT/webkit/build/precompiled_webkit.cc') | 827 pch, obj = env_p.PCH('$OBJ_ROOT/webkit/build/precompiled_webkit.cc') |
| 827 env['PCH'] = pch | 828 env['PCH'] = pch |
| 828 env['PCHSTOP'] = 'precompiled_webkit.h' | 829 env['PCHSTOP'] = 'precompiled_webkit.h' |
| 829 env.Append(CCPCHFLAGS = ['/FIprecompiled_webkit.h']) | 830 env.Append(CCPCHFLAGS = ['/FIprecompiled_webkit.h']) |
| 830 input_files += [obj] | 831 input_files += [obj] |
| 831 | 832 |
| 832 env.ChromeStaticLibrary('WebCore', input_files) | 833 env.ChromeStaticLibrary('WebCore', input_files) |
| 833 | 834 |
| OLD | NEW |