diff options
author | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-01 17:04:56 +0000 |
---|---|---|
committer | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-01 17:04:56 +0000 |
commit | d7dc149ffb61885e940bfbf150708b694f816eca (patch) | |
tree | b3e602c01d1779ea72cae76d87689b85837ba4f9 /build | |
parent | 89f1ecc6808585f9b0b02c712d5fc3c1454db7dc (diff) | |
download | chromium_src-d7dc149ffb61885e940bfbf150708b694f816eca.zip chromium_src-d7dc149ffb61885e940bfbf150708b694f816eca.tar.gz chromium_src-d7dc149ffb61885e940bfbf150708b694f816eca.tar.bz2 |
Revert 108116 - 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
TBR=noelallen@google.com
Review URL: http://codereview.chromium.org/8440003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108119 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 5ff3f62..60febef 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.stdout.write(pathname + '\n') + sys.stderr.write(pathname + '\n') return 0 |