diff options
author | jungshik@google.com <jungshik@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-30 18:59:47 +0000 |
---|---|---|
committer | jungshik@google.com <jungshik@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-30 18:59:47 +0000 |
commit | 4ca4e4d93de615dd2ce5a4c5f442bd7760b0951c (patch) | |
tree | 9251028a5e71291a7930c02408294e72559091fc /build/internal | |
parent | 7e3dcd91f5d1e75325183467e59886b892f457e1 (diff) | |
download | chromium_src-4ca4e4d93de615dd2ce5a4c5f442bd7760b0951c.zip chromium_src-4ca4e4d93de615dd2ce5a4c5f442bd7760b0951c.tar.gz chromium_src-4ca4e4d93de615dd2ce5a4c5f442bd7760b0951c.tar.bz2 |
Change build-related files to use Windows SDK 6.1 instead of Windows SDK 6.0.
SDK upgrade is necessary to support dynamic/webfont because SDK 6.0 does not have
t2embapi.h and t2embed.lib. SDK 6.1 is compatible with WIn XP and VS 2005 or later.
FYI:
http://codereview.chromium.org/14084/show is the CL for adding web/dynamic font support.
Review URL: http://codereview.chromium.org/14908
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7500 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/internal')
-rw-r--r-- | build/internal/essential.scons | 6 | ||||
-rw-r--r-- | build/internal/essential.vsprops | 2 |
2 files changed, 3 insertions, 5 deletions
diff --git a/build/internal/essential.scons b/build/internal/essential.scons index 547f73a..389ae35 100644 --- a/build/internal/essential.scons +++ b/build/internal/essential.scons @@ -46,8 +46,7 @@ if env.Bit('windows'): ('_HAS_TR1', 0), ], CPPPATH = [ - '$PLATFORMSDK_VISTA/Include', - '$PLATFORMSDK_VISTA/VC/INCLUDE', + '$PLATFORMSDK_6_1/Include', '$VISUAL_STUDIO/VC/atlmfc/include', ], CCFLAGS = [ @@ -76,8 +75,7 @@ if env.Bit('windows'): '/wd4819', ], LIBPATH = [ - '$PLATFORMSDK_VISTA/Lib', - '$PLATFORMSDK_VISTA/VC/LIB', + '$PLATFORMSDK_6_1/Lib', '$VISUAL_STUDIO/VC/atlmfc/lib', ], LIBS = [ diff --git a/build/internal/essential.vsprops b/build/internal/essential.vsprops index 0537f85..2fcc472 100644 --- a/build/internal/essential.vsprops +++ b/build/internal/essential.vsprops @@ -56,7 +56,7 @@ /> <UserMacro Name="SDK" - Value="$(SolutionDir)..\third_party\platformsdk_vista_6_0\files" + Value="$(SolutionDir)..\third_party\platformsdk_win2008_6_1\files" /> <UserMacro Name="SDKIncludes" |