summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
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',
],
)