diff options
author | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-24 00:48:16 +0000 |
---|---|---|
committer | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-24 00:48:16 +0000 |
commit | 04cffaf8bcf3382a3ad47da011c9cc1aff321175 (patch) | |
tree | 7b1faf7404f8773de2e0c6e5ae94525ea6dd213a /build/gyp_chromium | |
parent | 5c14951ae6906a26ec9b141785ba48b8313cf7e9 (diff) | |
download | chromium_src-04cffaf8bcf3382a3ad47da011c9cc1aff321175.zip chromium_src-04cffaf8bcf3382a3ad47da011c9cc1aff321175.tar.gz chromium_src-04cffaf8bcf3382a3ad47da011c9cc1aff321175.tar.bz2 |
Fix ChromiumOS build (it still has circular dependencies).
TBR=mark
Review URL: http://codereview.chromium.org/2107018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48008 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/gyp_chromium')
-rwxr-xr-x | build/gyp_chromium | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build/gyp_chromium b/build/gyp_chromium index ab05ae9..998d131 100755 --- a/build/gyp_chromium +++ b/build/gyp_chromium @@ -79,7 +79,9 @@ if __name__ == '__main__': # violation of the rule causes Xcode to misbehave badly. # TODO(mark): Find and kill remaining circular dependencies, and remove this # option. http://crbug.com/35878. - if sys.platform not in ('darwin', 'linux2'): + # TODO(tc): Fix circular dependencies in ChromiumOS then add linux2 to the + # list. + if sys.platform not in ('darwin',): args.append('--no-circular-check') # If CHROMIUM_GYP_SYNTAX_CHECK is set to 1, it will invoke gyp with --check |