Index: chrome/installer/setup/setup.scons |
=================================================================== |
--- chrome/installer/setup/setup.scons (revision 7247) |
+++ chrome/installer/setup/setup.scons (working copy) |
@@ -13,7 +13,7 @@ |
'$LZMA_SDK_DIR/using_lzma_sdk.scons', |
]) |
-if env['PLATFORM'] == 'win32': |
+if env.Bit('windows'): |
env_res = env.Clone() |
env_res.Append( |
@@ -46,7 +46,7 @@ |
], |
) |
-if env['PLATFORM'] == 'win32': |
+if env.Bit('windows'): |
env.Prepend( |
LINKFLAGS = [ |
'/INCREMENTAL', |
@@ -87,6 +87,6 @@ |
'setup_exe_version.rc.version', |
PWD = env.Dir('.')) |
-if env['PLATFORM'] == 'win32': |
+if env.Bit('windows'): |
# TODO(sgk): implicit dependency should be picked up automatically |
env_res.Depends(resources, exe_version_rc) |