summaryrefslogtreecommitdiffstats
path: root/build/SConscript.main
diff options
context:
space:
mode:
authorjungshik@google.com <jungshik@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-30 18:59:47 +0000
committerjungshik@google.com <jungshik@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-30 18:59:47 +0000
commit4ca4e4d93de615dd2ce5a4c5f442bd7760b0951c (patch)
tree9251028a5e71291a7930c02408294e72559091fc /build/SConscript.main
parent7e3dcd91f5d1e75325183467e59886b892f457e1 (diff)
downloadchromium_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/SConscript.main')
-rw-r--r--build/SConscript.main6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/SConscript.main b/build/SConscript.main
index 1b70f11..5e4be8a 100644
--- a/build/SConscript.main
+++ b/build/SConscript.main
@@ -269,16 +269,16 @@ else:
visual_studio_path = msvs_drive + ':/Program Files/Microsoft Visual Studio 8'
# If side-by-side platform sdk is not available try local copy.
-platform_sdk_path = '$CHROME_SRC_DIR/third_party/platformsdk_vista_6_0/files'
+platform_sdk_path = '$CHROME_SRC_DIR/third_party/platformsdk_win2008_6_1/files'
if (root_env['PLATFORM'] in ['win32', 'cygwin'] and
not os.path.exists(windows_env.subst(platform_sdk_path))):
platform_sdk_path = (
- msvs_drive + ':\\Program Files\\Microsoft SDKs\\Windows\\v6.0')
+ msvs_drive + ':\\Program Files\\Microsoft SDKs\\Windows\\v6.1')
windows_env.Replace(
CSCRIPT = 'c:\\Windows\\System32\\cscript',
- PLATFORMSDK_VISTA = platform_sdk_path,
+ PLATFORMSDK_6_1 = platform_sdk_path,
VISUAL_STUDIO = visual_studio_path,
CYGWIN_DIR = windows_env.Dir('$CHROME_SRC_DIR/third_party/cygwin'),