diff options
author | adamk@chromium.org <adamk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-05 01:19:36 +0000 |
---|---|---|
committer | adamk@chromium.org <adamk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-05 01:19:36 +0000 |
commit | 4fb87068c33eca1b7bda4552f1f0795c4cd1fca9 (patch) | |
tree | 8ae94e33fd4ad77f4aaa41dc326d1976aca67d14 /build | |
parent | dbc85fb3df19cc7ca4612dd46f69c1cd604fbbab (diff) | |
download | chromium_src-4fb87068c33eca1b7bda4552f1f0795c4cd1fca9.zip chromium_src-4fb87068c33eca1b7bda4552f1f0795c4cd1fca9.tar.gz chromium_src-4fb87068c33eca1b7bda4552f1f0795c4cd1fca9.tar.bz2 |
Prepare gyp_chromium for moving Source/core/core.gyp/core.gyp up a directory
This adds a new import path for pymod_do_main (and removes an old one).
After core.gyp moves up a directory, the old path can be removed.
R=abarth@chromium.org
Review URL: https://codereview.chromium.org/15968014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@204115 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rwxr-xr-x | build/gyp_chromium | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/gyp_chromium b/build/gyp_chromium index 0cbb8ce..b31c433 100755 --- a/build/gyp_chromium +++ b/build/gyp_chromium @@ -26,7 +26,8 @@ sys.path.insert(1, os.path.join(chrome_src, 'tools', 'grit')) sys.path.insert(1, os.path.join(chrome_src, 'chrome', 'tools', 'build')) sys.path.insert(1, os.path.join(chrome_src, 'native_client', 'build')) sys.path.insert(1, os.path.join(chrome_src, 'third_party', 'WebKit', - 'Source', 'WebCore', 'WebCore.gyp', 'scripts')) + 'Source', 'core', 'scripts')) +# TODO(adamk): Remove this line once core.gyp is no longer a directory sys.path.insert(1, os.path.join(chrome_src, 'third_party', 'WebKit', 'Source', 'core', 'core.gyp', 'scripts')) |