summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authorbradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-22 05:03:39 +0000
committerbradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-22 05:03:39 +0000
commitd09e3de46fae6200b0cd1a79867dcbd147db938a (patch)
tree2cd3b3aa632930e8d294ce5bb1b9e6423b06bbc9 /base
parent335ee05f3a724cead4c7fea90e1f1dbbdb9926fd (diff)
downloadchromium_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')
-rw-r--r--base/base_lib.scons2
-rw-r--r--base/base_unittests.scons4
-rw-r--r--base/gfx/base_gfx.scons2
3 files changed, 4 insertions, 4 deletions
diff --git a/base/base_lib.scons b/base/base_lib.scons
index c18a5c4..ee12592 100644
--- a/base/base_lib.scons
+++ b/base/base_lib.scons
@@ -16,7 +16,7 @@ env.SConscript([
env.Prepend(
CPPPATH = [
- '$ROOT_DIR',
+ '$CHROME_SRC_DIR',
],
)
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 = [
diff --git a/base/gfx/base_gfx.scons b/base/gfx/base_gfx.scons
index 9a5e992..9892d66 100644
--- a/base/gfx/base_gfx.scons
+++ b/base/gfx/base_gfx.scons
@@ -19,7 +19,7 @@ env.SConscript([
env.Prepend(
CPPPATH = [
- '$ROOT_DIR',
+ '$CHROME_SRC_DIR',
],
)