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 /net | |
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 'net')
-rw-r--r-- | net/crash_cache.scons | 2 | ||||
-rw-r--r-- | net/net_lib.scons | 2 | ||||
-rw-r--r-- | net/net_perftests.scons | 4 | ||||
-rw-r--r-- | net/net_resources.scons | 2 | ||||
-rw-r--r-- | net/net_unittests.scons | 4 | ||||
-rw-r--r-- | net/stress_cache.scons | 2 | ||||
-rw-r--r-- | net/tools/tld_cleanup/tld_cleanup.scons | 4 |
7 files changed, 10 insertions, 10 deletions
diff --git a/net/crash_cache.scons b/net/crash_cache.scons index 6ef6860..812f30c 100644 --- a/net/crash_cache.scons +++ b/net/crash_cache.scons @@ -22,7 +22,7 @@ env.SConscript([ env.Prepend( CPPPATH = [ - '$ROOT_DIR', + '$CHROME_SRC_DIR', ], ) diff --git a/net/net_lib.scons b/net/net_lib.scons index ee57964..7de96f0 100644 --- a/net/net_lib.scons +++ b/net/net_lib.scons @@ -20,7 +20,7 @@ env.SConscript([ env.Prepend( CPPPATH = [ - '$ROOT_DIR', + '$CHROME_SRC_DIR', ], ) diff --git a/net/net_perftests.scons b/net/net_perftests.scons index 8c25187..506d85e 100644 --- a/net/net_perftests.scons +++ b/net/net_perftests.scons @@ -17,7 +17,7 @@ env.SConscript([ '$NET_DIR/using_net.scons', '$BASE_DIR/using_base.scons', - '#/../build/using_googleurl.scons', + '$CHROME_SRC_DIR/build/using_googleurl.scons', '$GTEST_DIR/../using_gtest.scons', '$ICU38_DIR/using_icu38.scons', '$MODP_B64_DIR/using_modp_b64.scons', @@ -30,7 +30,7 @@ if env['PLATFORM'] in ('posix', 'darwin'): env.Prepend( CPPPATH = [ - '$ROOT_DIR', + '$CHROME_SRC_DIR', ], ) diff --git a/net/net_resources.scons b/net/net_resources.scons index bbce3c4..aebf0d2 100644 --- a/net/net_resources.scons +++ b/net/net_resources.scons @@ -12,7 +12,7 @@ env = env.Clone() env.Prepend( CPPPATH = [ - '$ROOT_DIR', + '$CHROME_SRC_DIR', ], RCFLAGS = [ ['/l', '0x409'], diff --git a/net/net_unittests.scons b/net/net_unittests.scons index 374f0f1..dbb0534 100644 --- a/net/net_unittests.scons +++ b/net/net_unittests.scons @@ -18,7 +18,7 @@ env.SConscript([ '$BZIP2_DIR/using_bzip2.scons', '$BASE_DIR/using_base.scons', - '#/../build/using_googleurl.scons', + '$CHROME_SRC_DIR/build/using_googleurl.scons', '$GTEST_DIR/../using_gtest.scons', '$ICU38_DIR/using_icu38.scons', '$MODP_B64_DIR/using_modp_b64.scons', @@ -34,7 +34,7 @@ if env['PLATFORM'] in ('posix', 'darwin'): env.Prepend( CPPPATH = [ - '$ROOT_DIR', + '$CHROME_SRC_DIR', ], ) diff --git a/net/stress_cache.scons b/net/stress_cache.scons index ea8ff17..f0d706e 100644 --- a/net/stress_cache.scons +++ b/net/stress_cache.scons @@ -22,7 +22,7 @@ env.SConscript([ env.Prepend( CPPPATH = [ - '$ROOT_DIR', + '$CHROME_SRC_DIR', ], ) diff --git a/net/tools/tld_cleanup/tld_cleanup.scons b/net/tools/tld_cleanup/tld_cleanup.scons index 4819883..ad743c6 100644 --- a/net/tools/tld_cleanup/tld_cleanup.scons +++ b/net/tools/tld_cleanup/tld_cleanup.scons @@ -12,14 +12,14 @@ env = env.Clone() env.SConscript([ '$BASE_DIR/using_base.scons', - '#/../build/using_googleurl.scons', + '$CHROME_SRC_DIR/build/using_googleurl.scons', '$ICU38_DIR/using_icu38.scons', '$NET_DIR/using_net.scons', ], {'env':env}) env.Prepend( CPPPATH = [ - '$ROOT_DIR', + '$CHROME_SRC_DIR', ], ) |