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/SConscript12
1 files changed, 6 insertions, 6 deletions
diff --git a/webkit/build/localized_strings/SConscript b/webkit/build/localized_strings/SConscript
index 05db1b8..d48719f 100644
--- a/webkit/build/localized_strings/SConscript
+++ b/webkit/build/localized_strings/SConscript
@@ -10,9 +10,9 @@ env_res = env_res.Clone()
env_res.Append(
CPPPATH = [
".",
- #"#/../chrome/Debug/obj/chrome_dll",
- "#/..",
- #"#/../chrome/Debug/obj",
+ #"$CHROME_SRC_DIR/chrome/Debug/obj/chrome_dll",
+ "$CHROME_SRC_DIR",
+ #"$CHROME_SRC_DIR/chrome/Debug/obj",
],
RCFLAGS = [
["/l", "0x409"],
@@ -21,13 +21,13 @@ env_res.Append(
import os
import sys
-sys.path.append(Dir('#/../tools/grit').abspath)
+sys.path.append(env.Dir('$CHROME_SRC_DIR/tools/grit').abspath)
env_grd = env.Clone()
-env_grd.Tool('scons', toolpath=['#/../tools/grit/grit'])
+env_grd.Tool('scons', toolpath=[env_grd.Dir('$CHROME_SRC_DIR/tools/grit/grit')])
# This dummy target (webkit_strings) is used to tell the emitter where
# to put the target files.
generated = env_grd.GRIT('webkit_strings',
- '#/../webkit/glue/webkit_strings.grd')
+ '$CHROME_SRC_DIR/webkit/glue/webkit_strings.grd')
for g in [ g for g in generated if str(g).endswith('.rc') ]:
env_res.RES(g)