diff options
author | bradnelson@chromium.org <bradnelson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-03 20:45:47 +0000 |
---|---|---|
committer | bradnelson@chromium.org <bradnelson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-03 20:45:47 +0000 |
commit | fc78fd42b81a97d3d15419e679f3ff9e0f470d9c (patch) | |
tree | bde32a7774d8d727d42a011ffefede44ebfceb6c /build/internal | |
parent | 34004eea5940a37644ce70707470647091958cd2 (diff) | |
download | chromium_src-fc78fd42b81a97d3d15419e679f3ff9e0f470d9c.zip chromium_src-fc78fd42b81a97d3d15419e679f3ff9e0f470d9c.tar.gz chromium_src-fc78fd42b81a97d3d15419e679f3ff9e0f470d9c.tar.bz2 |
Allows scons build to use local copy of platformsdk if one is not bundled side-by-side.
Review URL: http://codereview.chromium.org/12915
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6305 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/internal')
-rw-r--r-- | build/internal/essential.scons | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build/internal/essential.scons b/build/internal/essential.scons index 56770d9..bca07f2 100644 --- a/build/internal/essential.scons +++ b/build/internal/essential.scons @@ -46,8 +46,8 @@ if env['PLATFORM'] == 'win32': ('_HAS_TR1', 0), ], CPPPATH = [ - '$PLATFORMSDK_VISTA/files/Include', - '$PLATFORMSDK_VISTA/files/VC/INCLUDE', + '$PLATFORMSDK_VISTA/Include', + '$PLATFORMSDK_VISTA/VC/INCLUDE', '$VISUAL_STUDIO/VC/atlmfc/include', ], CCFLAGS = [ @@ -76,8 +76,8 @@ if env['PLATFORM'] == 'win32': '/wd4819', ], LIBPATH = [ - '$PLATFORMSDK_VISTA/files/Lib', - '$PLATFORMSDK_VISTA/files/VC/LIB', + '$PLATFORMSDK_VISTA/Lib', + '$PLATFORMSDK_VISTA/VC/LIB', '$VISUAL_STUDIO/VC/atlmfc/lib', ], LIBS = [ |