| 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 env.Prepend( | 9 env.Prepend( |
| 10 CPPPATH = [ | 10 CPPPATH = [ |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 'picture/SkPicture.cpp', | 363 'picture/SkPicture.cpp', |
| 364 'picture/SkPictureFlat.cpp', | 364 'picture/SkPictureFlat.cpp', |
| 365 'picture/SkPictureFlat.h', | 365 'picture/SkPictureFlat.h', |
| 366 'picture/SkPicturePlayback.cpp', | 366 'picture/SkPicturePlayback.cpp', |
| 367 'picture/SkPicturePlayback.h', | 367 'picture/SkPicturePlayback.h', |
| 368 'picture/SkPictureRecord.cpp', | 368 'picture/SkPictureRecord.cpp', |
| 369 'picture/SkPictureRecord.h', | 369 'picture/SkPictureRecord.h', |
| 370 ]), | 370 ]), |
| 371 | 371 |
| 372 MSVSFilter('ext', [ | 372 MSVSFilter('ext', [ |
| 373 'ext/convolver.cc', | |
| 374 'ext/convolver.h', | |
| 375 'ext/bitmap_platform_device.h', | 373 'ext/bitmap_platform_device.h', |
| 376 'ext/bitmap_platform_device_win.cc', | 374 'ext/bitmap_platform_device_win.cc', |
| 377 'ext/bitmap_platform_device_win.h', | 375 'ext/bitmap_platform_device_win.h', |
| 376 'ext/convolver.cc', |
| 377 'ext/convolver.h', |
| 378 'ext/google_logging.cc', | 378 'ext/google_logging.cc', |
| 379 'ext/image_operations.cc', | 379 'ext/image_operations.cc', |
| 380 'ext/image_operations.h', | 380 'ext/image_operations.h', |
| 381 'ext/platform_canvas.h', | 381 'ext/platform_canvas.h', |
| 382 'ext/platform_canvas_win.cc', | 382 'ext/platform_canvas_win.cc', |
| 383 'ext/platform_canvas_win.h', | 383 'ext/platform_canvas_win.h', |
| 384 'ext/platform_device.h', | 384 'ext/platform_device.h', |
| 385 'ext/platform_device_win.cc', | 385 'ext/platform_device_win.cc', |
| 386 'ext/platform_device_win.h', | 386 'ext/platform_device_win.h', |
| 387 'ext/skia_utils.cc', | 387 'ext/skia_utils.cc', |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 461 # IncrediBuild installed on the build machine? | 461 # IncrediBuild installed on the build machine? |
| 462 pch, obj = env_p.PCH(['skia.pch', 'precompiled.obj'], 'precompiled.cc') | 462 pch, obj = env_p.PCH(['skia.pch', 'precompiled.obj'], 'precompiled.cc') |
| 463 env_p['PCH'] = pch | 463 env_p['PCH'] = pch |
| 464 input_files.Replace('precompiled.cc', obj) | 464 input_files.Replace('precompiled.cc', obj) |
| 465 | 465 |
| 466 env.ChromeLibrary('skia', input_files) | 466 env.ChromeLibrary('skia', input_files) |
| 467 | 467 |
| 468 p = env.ChromeMSVSProject('skia.vcproj', | 468 p = env.ChromeMSVSProject('skia.vcproj', |
| 469 dest='$CHROME_SRC_DIR/skia/skia.vcproj', | 469 dest='$CHROME_SRC_DIR/skia/skia.vcproj', |
| 470 guid='{CD9CA56E-4E94-444C-87D4-58CA1E6F300D}', | 470 guid='{CD9CA56E-4E94-444C-87D4-58CA1E6F300D}', |
| 471 keyword='Win32Proj', |
| 471 files=input_files, | 472 files=input_files, |
| 472 relative_path_prefix=r'./', | 473 relative_path_prefix=r'./', |
| 473 tools = [ | 474 tools = [ |
| 474 'VCPreBuildEventTool', | 475 'VCPreBuildEventTool', |
| 475 'VCCustomBuildTool', | 476 'VCCustomBuildTool', |
| 476 'VCXMLDataGeneratorTool', | 477 'VCXMLDataGeneratorTool', |
| 477 'VCWebServiceProxyGeneratorTool', | 478 'VCWebServiceProxyGeneratorTool', |
| 478 'VCMIDLTool', | 479 'VCMIDLTool', |
| 479 'VCCLCompilerTool', | 480 'VCCLCompilerTool', |
| 480 'VCManagedResourceCompilerTool', | 481 'VCManagedResourceCompilerTool', |
| (...skipping 29 matching lines...) Expand all Loading... |
| 510 MSVSTool('VCCLCompilerTool', UsePrecompiledHeader='1'), | 511 MSVSTool('VCCLCompilerTool', UsePrecompiledHeader='1'), |
| 511 ]) | 512 ]) |
| 512 | 513 |
| 513 p.AddFileConfig( | 514 p.AddFileConfig( |
| 514 'precompiled.cc', | 515 'precompiled.cc', |
| 515 'Release|Win32', | 516 'Release|Win32', |
| 516 ExcludedFromBuild='true', | 517 ExcludedFromBuild='true', |
| 517 tools=[ | 518 tools=[ |
| 518 MSVSTool('VCCLCompilerTool'), | 519 MSVSTool('VCCLCompilerTool'), |
| 519 ]) | 520 ]) |
| OLD | NEW |