Skip to content

Commit

Permalink
Add 'build' directory to import path of gyp_chromium.
Browse files Browse the repository at this point in the history
Change https://codereview.chromium.org/1418513007/ moved a module
from tools/ to build/ causing gyp_chromium to import a different
module of the same name and breaking because the function names
are different.

BUG=

Review URL: https://codereview.chromium.org/1416223004

Cr-Commit-Position: refs/heads/master@{#356842}
  • Loading branch information
bcwhite authored and Commit bot committed Oct 29, 2015
1 parent b2e830c commit d9aaae0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions build/gyp_chromium.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
sys.path.insert(1, os.path.join(chrome_src, 'third_party', 'liblouis'))
sys.path.insert(1, os.path.join(chrome_src, 'third_party', 'WebKit',
'Source', 'build', 'scripts'))
sys.path.insert(1, os.path.join(chrome_src, 'build'))
sys.path.insert(1, os.path.join(chrome_src, 'tools'))
sys.path.insert(1, os.path.join(chrome_src, 'tools', 'generate_shim_headers'))
sys.path.insert(1, os.path.join(chrome_src, 'tools', 'grit'))
Expand Down

0 comments on commit d9aaae0

Please sign in to comment.