diff options
author | dschuff@chromium.org <dschuff@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-22 23:28:10 +0000 |
---|---|---|
committer | dschuff@chromium.org <dschuff@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-22 23:28:10 +0000 |
commit | b52fa34850f93470a3e7ba06d50fd968d7dc0363 (patch) | |
tree | 94cc79b810955073e10338a62ace1f699e39f557 /ipc | |
parent | a510d40d7bbad7debdd2d1d3f0cc50eb038ae530 (diff) | |
download | chromium_src-b52fa34850f93470a3e7ba06d50fd968d7dc0363.zip chromium_src-b52fa34850f93470a3e7ba06d50fd968d7dc0363.tar.gz chromium_src-b52fa34850f93470a3e7ba06d50fd968d7dc0363.tar.bz2 |
Remove redundant newlib builds of untrusted libraries
Recent gyp changes (see the bug) split the IRT build rules off from the
newlib and glibc build. For libraries which go into the IRT, the
build_irt variable should be set (but not necessarily build_newlib).
For libraries that go into the NaCl SDK and/or testing nexes,
build_newlib, build_glibc and build_pnacl_newlib should be used.
These libraries modified in this CL go only into the NaCl IRT, so they
only need to build with build_irt.
R=bradnelson@chromium.org,dmichael@chromium.org,bbudge@chromium.org
TBR=brettw@chromium.org,fischman@chromium.org,jbauman@chromium.org
BUG= https://code.google.com/p/nativeclient/issues/detail?id=3577
BUG= https://code.google.com/p/chromium/issues/detail?id=277813
Review URL: https://chromiumcodereview.appspot.com/22296003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@219142 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/ipc_untrusted.gyp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/ipc_untrusted.gyp b/ipc/ipc_untrusted.gyp index a502548..7b0c5483 100644 --- a/ipc/ipc_untrusted.gyp +++ b/ipc/ipc_untrusted.gyp @@ -21,7 +21,7 @@ 'nacl_untrusted_build': 1, 'nlib_target': 'libipc_untrusted.a', 'build_glibc': 0, - 'build_newlib': 1, + 'build_newlib': 0, 'build_irt': 1, }, 'dependencies': [ |