summaryrefslogtreecommitdiffstats
path: root/webkit/build/localized_strings/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/build/localized_strings/SConscript')
-rw-r--r--webkit/build/localized_strings/SConscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/build/localized_strings/SConscript b/webkit/build/localized_strings/SConscript
index 5d7cef2..7e99dc7 100644
--- a/webkit/build/localized_strings/SConscript
+++ b/webkit/build/localized_strings/SConscript
@@ -16,7 +16,7 @@ env_res.Append(
],
)
-if env_res['PLATFORM'] == 'win32':
+if env_res.Bit('windows'):
env_res.Append(
RCFLAGS = [
["/l", "0x409"],
@@ -34,6 +34,6 @@ generated = env_grd.GRIT(
'$TARGET_ROOT/grit_derived_sources/fake_generated_target',
'$CHROME_SRC_DIR/webkit/glue/webkit_strings.grd')
-if env_res['PLATFORM'] == 'win32':
+if env_res.Bit('windows'):
for g in [g for g in generated if str(g).endswith('.rc')]:
env_res.RES(g)