diff options
author | bradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-22 05:03:39 +0000 |
---|---|---|
committer | bradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-22 05:03:39 +0000 |
commit | d09e3de46fae6200b0cd1a79867dcbd147db938a (patch) | |
tree | 2cd3b3aa632930e8d294ce5bb1b9e6423b06bbc9 /webkit/SConscript | |
parent | 335ee05f3a724cead4c7fea90e1f1dbbdb9926fd (diff) | |
download | chromium_src-d09e3de46fae6200b0cd1a79867dcbd147db938a.zip chromium_src-d09e3de46fae6200b0cd1a79867dcbd147db938a.tar.gz chromium_src-d09e3de46fae6200b0cd1a79867dcbd147db938a.tar.bz2 |
Using $CHROME_SRC_DIR in place of hash/..
This will facilitate changing where the main sconstruct lives.
Review URL: http://codereview.chromium.org/7847
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3725 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/SConscript')
-rw-r--r-- | webkit/SConscript | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/webkit/SConscript b/webkit/SConscript index 77e4a1a..f314da9 100644 --- a/webkit/SConscript +++ b/webkit/SConscript @@ -31,8 +31,8 @@ env_res = env.Clone() # 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 @@ env.Prepend( '$WEBKIT_DIR/port/svg/animation', '$WEBKIT_DIR/port/svg/graphics/filters', - '#/..', + '$CHROME_SRC_DIR', ], ) @@ -263,7 +263,7 @@ if env['PLATFORM'] == 'win32': 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) |