diff options
author | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-01 16:43:40 +0000 |
---|---|---|
committer | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-01 16:43:40 +0000 |
commit | 23921a1b0bbc1806e8f2cfaeddff0600e6ec8f4a (patch) | |
tree | 005c4ba1d1d901693d5e90d21d5fd2f643f74cac /build | |
parent | 262edf2af2b11f7128a011f6b0cfb6248c4cc4ae (diff) | |
download | chromium_src-23921a1b0bbc1806e8f2cfaeddff0600e6ec8f4a.zip chromium_src-23921a1b0bbc1806e8f2cfaeddff0600e6ec8f4a.tar.gz chromium_src-23921a1b0bbc1806e8f2cfaeddff0600e6ec8f4a.tar.bz2 |
Use GYP to build nacl_irt
Converts Chrome from using scons to using GYP when building nacl_irt.
This change causes chrome to use GYP based components for untrusted
code. As a benifit, GYP will no longer need to run and scrape scons
output to determine irt dependencies. This also allows us to avoid
invoking scons during the build process.
We roll NaCl deps to get a fix for a simultaneous 32/64 bit build
issue on Windows.
TEST= try
BUG= http://code.google.com/p/chromium/issues/detail?id=96782
Review URL: http://codereview.chromium.org/8416025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108116 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rwxr-xr-x | build/scan_sources.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/scan_sources.py b/build/scan_sources.py index 60febef..5ff3f62 100755 --- a/build/scan_sources.py +++ b/build/scan_sources.py @@ -227,7 +227,7 @@ def Main(argv): sorted_list = workQ.Run() for pathname in sorted_list: - sys.stderr.write(pathname + '\n') + sys.stdout.write(pathname + '\n') return 0 |