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 /base/base_unittests.scons | |
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 'base/base_unittests.scons')
-rw-r--r-- | base/base_unittests.scons | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/base_unittests.scons b/base/base_unittests.scons index 3675e52..628970d 100644 --- a/base/base_unittests.scons +++ b/base/base_unittests.scons @@ -27,7 +27,7 @@ if env['PLATFORM'] in ('posix', 'darwin'): env.Prepend( CPPPATH = [ - '$ROOT_DIR', + '$CHROME_SRC_DIR', ], CPPDEFINES = [ 'GOOGLE_CHROME_BUILD', @@ -63,7 +63,7 @@ if env['PLATFORM'] == 'posix': # Explicity list the functions we want to export from the base_unittest # executable in the following file. env['EXPORTED_SYMBOLS_FILE'] = \ - env.File('$ROOT_DIR/base/base_unittest_exported_symbols.version') + env.File('$CHROME_SRC_DIR/base/base_unittest_exported_symbols.version') env.Append( LIBS = [ |