diff options
author | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-17 21:37:55 +0000 |
---|---|---|
committer | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-17 21:37:55 +0000 |
commit | 896d733e7532b38543f75e565cc383b3477a5127 (patch) | |
tree | 65964308eae64cffd33a45412337fa7866c0a851 /tools/gyp-explain.py | |
parent | 44b743ad46befa4429136873309fd467671d4874 (diff) | |
download | chromium_src-896d733e7532b38543f75e565cc383b3477a5127.zip chromium_src-896d733e7532b38543f75e565cc383b3477a5127.tar.gz chromium_src-896d733e7532b38543f75e565cc383b3477a5127.tar.bz2 |
allow gyp-explain on Windows, and change help to work with current chrome gyp files
R=thakis@chromium.org
Review URL: https://codereview.chromium.org/11902006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@177495 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/gyp-explain.py')
-rwxr-xr-x | tools/gyp-explain.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/tools/gyp-explain.py b/tools/gyp-explain.py index 34758ed..35b4667 100755 --- a/tools/gyp-explain.py +++ b/tools/gyp-explain.py @@ -16,7 +16,7 @@ from collections import deque def usage(): print """\ Usage: - tools/gyp-explain.py chrome_dll gtest# + tools/gyp-explain.py chrome_dll# gtest# """ @@ -52,11 +52,6 @@ def MatchNode(graph, substring): def Main(argv): - if sys.platform in ['win32', 'cygwin']: - print 'The dump_dependency_json gyp generator required for gyp-explain.py' - print 'does not support Windows.' - sys.exit(1) - # Check that dump.json exists and that it's not too old. dump_json_dirty = False try: |