Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(89)

Unified Diff: webkit/build/localized_strings/SConscript

Issue 7847: Using $CHROME_SRC_DIR in place of hash/..... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/build/JavaScriptCore/SConscript ('k') | webkit/build/port/SConscript » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/build/localized_strings/SConscript
===================================================================
--- webkit/build/localized_strings/SConscript (revision 3721)
+++ webkit/build/localized_strings/SConscript (working copy)
@@ -10,9 +10,9 @@
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 @@
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)
« no previous file with comments | « webkit/build/JavaScriptCore/SConscript ('k') | webkit/build/port/SConscript » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698