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

Unified Diff: webkit/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 | « third_party/modp_b64/modp_b64.scons ('k') | webkit/SConscript.javascriptcore_pcre » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/SConscript
===================================================================
--- webkit/SConscript (revision 3721)
+++ webkit/SConscript (working copy)
@@ -31,8 +31,8 @@
# or not the file involved is a generated file or checked-in source.
port_dir = env.Dir('$WEBKIT_DIR/port')
-port_dir.addRepository(env.Dir('#/../webkit/port'))
-port_dir.addRepository(env.Dir('#/../third_party/WebKit/WebCore'))
+port_dir.addRepository(env.Dir('$CHROME_SRC_DIR/webkit/port'))
+port_dir.addRepository(env.Dir('$CHROME_SRC_DIR/third_party/WebKit/WebCore'))
if env['PLATFORM'] == 'win32':
env['WEBKIT_PLATFORM_SUBDIR'] = 'win'
@@ -141,7 +141,7 @@
'$WEBKIT_DIR/port/svg/animation',
'$WEBKIT_DIR/port/svg/graphics/filters',
- '#/..',
+ '$CHROME_SRC_DIR',
],
)
@@ -263,7 +263,7 @@
version = env.Command('$WEBKIT_DIR/build/WebCore/webkit_version.h',
['$WEBCORE_DIR/Configurations/Version.xcconfig',
- '#/../webkit/build/webkit_version.py'],
+ '$CHROME_SRC_DIR/webkit/build/webkit_version.py'],
"$PYTHON ${SOURCES[1]} ${SOURCES[0]} ${TARGET.dir}")
env.AlwaysBuild(version)
« no previous file with comments | « third_party/modp_b64/modp_b64.scons ('k') | webkit/SConscript.javascriptcore_pcre » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698