summaryrefslogtreecommitdiffstats
path: root/native_client_sdk
Commit message (Collapse)AuthorAgeFilesLines
* [NaCl SDK AppEngine] Fix lua URLs to support loading from https.binji@chromium.org2013-11-252-3/+3
| | | | | | | | | | | (This fixes a few URLs I forgot in r237102) BUG=none R=sbc@chromium.org Review URL: https://codereview.chromium.org/85803003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@237167 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] fix shared library link rule in example build system.sbc@chromium.org2013-11-252-20/+30
| | | | | | | | | | | | | | | | | The rules for building shared libraries are now much more similar to those for building executables. In particular we honor the libraries paths and linker flags for the project. This discrepancy was causing the libraries to be linked without -pthread, which was causing a failure under the recent binutils update in the NaCl toolchain. R=binji@chromium.org, mcgrathr@chromium.org Review URL: https://codereview.chromium.org/84073002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@237105 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK AppEngine] Fix URLs to support loading from https.binji@chromium.org2013-11-2515-22/+22
| | | | | | | | | | | | | | | | It's unfortunately difficult to test whether this works; I pushed to a different version on appspot, but https is not allowed there (the certs are invalid). I've confirmed that http still works, however. * Also, update .pexes to non-dev versions. * Also, actually land the change to update docs -> dev. BUG=none R=sbc@chromium.org Review URL: https://codereview.chromium.org/83793005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@237102 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] nacl_io: Fix some httpfs bugs.binji@chromium.org2013-11-226-331/+453
| | | | | | | | | | | | | | | | * Fix GetStat returning size=0, when there is no "Content-Length" header, and cache_stat is off. * Fix infinite loop when reading uncached past the end of the entity. * Fix error when doing partial read past the end of the entity. * Fix Fake URLLoader to handle partial content correctly. * Add parameterized HTTP tests (on each caching type, cache_stat/cache_content). BUG=320557 R=sbc@chromium.org Review URL: https://codereview.chromium.org/81483002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236799 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 236644 "[NaCl SDK] Turn off parallel GYP when building na..."binji@chromium.org2013-11-221-7/+5
| | | | | | | | | | | | | | | | | | | | This change has been merged to the 1700 branch, so remove it from trunk. > [NaCl SDK] Turn off parallel GYP when building nacl_sdk. > > This will make it easier to drover a change to the 1700 branch, instead of > having to branch native_client to get the real fix (r12324). > > BUG=319564 > R=sbc@chromium.org > > Review URL: https://codereview.chromium.org/62523005 TBR=binji@chromium.org Review URL: https://codereview.chromium.org/82703004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236775 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] Turn off parallel GYP when building nacl_sdk.binji@chromium.org2013-11-221-5/+7
| | | | | | | | | | | | This will make it easier to drover a change to the 1700 branch, instead of having to branch native_client to get the real fix (r12324). BUG=319564 R=sbc@chromium.org Review URL: https://codereview.chromium.org/62523005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236644 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] Update published version of Visual Studio addin.sbc@chromium.org2013-11-211-1/+1
| | | | | | | | | | | | The primary change here is to add VS2012 support, but this also fixes for the default library path as well as the new location of pnacl toolchain. R=binji@chromium.org Review URL: https://codereview.chromium.org/76503002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236576 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] Remove unneeded warning supressions.sbc@chromium.org2013-11-218-25/+6
| | | | | | | | | | | | | | The no-unused-local-typedefs flag is no longer needed since we moved to a new version of gtest. The other warnings are all fixed in this CL. R=binji@chromium.org, binji BUG=270739 Review URL: https://codereview.chromium.org/77043002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236370 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] Enable linux host build of nacl_io_socket_test.sbc@chromium.org2013-11-215-104/+119
| | | | | | | | | | | | | | | | | | | Add -Wl,-Bsymbolic to linux host build so that symbols in the shared object override those in already loaded libraries (specifically libc). Also add .map file generation to linux build. Also, re-enable --no-sandbox when running linux host builds (without this loading of the so fails with permission denied). BUG=295794 R=binji@chromium.org Review URL: https://codereview.chromium.org/59823007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236358 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] Add URLLoader fake pepper interface.binji@chromium.org2013-11-2010-548/+933
| | | | | | | | | BUG=244313,245431 R=sbc@chromium.org Review URL: https://codereview.chromium.org/77423002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236343 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] Run ncval on executables as part of build.binji@chromium.org2013-11-203-0/+102
| | | | | | | | | | | | Currently this doesn't do anything nice like ncval_annotate, but it is a step in the right direction. BUG=116194 R=sbc@chromium.org Review URL: https://codereview.chromium.org/78713005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236339 0039d316-1c4b-4281-b951-d872f2087c98
* NaCl docs: Clarify signal handling and exception handling sectionsmseaborn@chromium.org2013-11-201-14/+34
| | | | | | | | | | | | | | | "Exception handling" is ambiguous, so clarify C++ vs. hardware exceptions. "Signal handling" really refers to two features developers might want, to clarify that. BUG=none TEST="make" in native_client_sdk/src/doc Review URL: https://codereview.chromium.org/77153002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236333 0039d316-1c4b-4281-b951-d872f2087c98
* NaCl docs: Add instructions for how to debug a PNaCl pexemseaborn@chromium.org2013-11-201-1/+65
| | | | | | | | | | | Tweak the ToC so that the new subheadings appear in it. BUG=none TEST="make" in native_client_sdk/src/doc Review URL: https://codereview.chromium.org/68893021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236081 0039d316-1c4b-4281-b951-d872f2087c98
* NaCl SDK: Remove PPB_Testing_Dev.teravest@chromium.org2013-11-191-1/+0
| | | | | | | | | | | This interface shouldn't be used by anything in native_client_sdk. BUG= R=binji@chromium.org Review URL: https://codereview.chromium.org/66153004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236045 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] Fix memory leaks in nacl_io_test.sbc@chromium.org2013-11-192-9/+9
| | | | | | | | | | | These are all the leaks found by running valgrind on the linux host build. R=binji@chromium.org Review URL: https://codereview.chromium.org/74643002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236007 0039d316-1c4b-4281-b951-d872f2087c98
* Teach create_nmf.py about new toolchains' BFD format namesmcgrathr@chromium.org2013-11-191-1/+5
| | | | | | | | | | | | | New x86 NaCl toolchains will change the BFD format names displayed by objdump. Make the script handle both old and new names. BUG= https://code.google.com/p/nativeclient/issues/detail?id=3636 TEST= none R=sbc@chromium.org Review URL: https://codereview.chromium.org/61603010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@235909 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] nacl_io: Auto-bind UDP socket on first sendto().binji@chromium.org2013-11-183-6/+74
| | | | | | | | | BUG=318983 R=sbc@chromium.org Review URL: https://codereview.chromium.org/63573006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@235833 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] Enable linux host build for nacl_io and nacl_io_tests.sbc@chromium.org2013-11-1830-197/+266
| | | | | | | | | | | | The process of doing this already found one serious bug in lseek and will enable us to find many more via asan and other sanitisers which run on the linux host envionment. R=binji@chromium.org, binji Review URL: https://codereview.chromium.org/73083005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@235753 0039d316-1c4b-4281-b951-d872f2087c98
* Minor tweaks to Makefile to make it easier to push docs to DevSite.awatson@chromium.org2013-11-181-1/+2
| | | | | | | | | | | - Default to dev directory for devsite-prod build. - Remove unneeded build artifacts for devsite-prod build. R=sbc@chromium.org Review URL: https://codereview.chromium.org/72213002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@235669 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] roll naclports revision.sbc@chromium.org2013-11-161-1/+1
| | | | | | | | | | | This fixes the linux bot which is currently failing to build the lua appengine example (readline build failing). R=binji@chromium.org Review URL: https://codereview.chromium.org/63193004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@235485 0039d316-1c4b-4281-b951-d872f2087c98
* NaCl docs: Fix PPAPI sample C codemseaborn@chromium.org2013-11-141-6/+10
| | | | | | | | | | | | | | | | | | | | Fix #include of {ppp,ppb}_input_event.h. Add some missing #includes that the sample code depends on for PP_OK, PP_EXPORT, NULL and strcmp(). There is no "struct PPP_InputEvent". There is "struct PPP_InputEvent_0_1" and the typedef name "PPP_InputEvent". Fix copy-and-pasted reference to PPB_Instance that should be PPB_InputEvent. BUG=none TEST=tested compiling sample Review URL: https://codereview.chromium.org/72893002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@235224 0039d316-1c4b-4281-b951-d872f2087c98
* PNaCl doc: mention GCCMM's __atomic_*.jfb@chromium.org2013-11-141-0/+2
| | | | | | | | | | R= dschuff@chromium.org NOTRY=true (documentation change) Review URL: https://codereview.chromium.org/71753002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@235181 0039d316-1c4b-4281-b951-d872f2087c98
* NaCl docs: Remove outdated note about GDB debugging prerequisitesmseaborn@chromium.org2013-11-141-14/+0
| | | | | | | | | | | | | | | | | | Chrome 23 was released about a year ago, so saying that SDK version 23 is required now seems unnecessary. There is no general requirement to use a Chrome version that's as new as the SDK version. This note was left over from last year when the NaCl GDB debug stub was undergoing a lot of development, and nacl-gdb tended to require new debug stub features in Chrome, but there have been no such dependencies added recently. BUG=none TEST="make" in native_client_sdk/src/doc Review URL: https://codereview.chromium.org/72763003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@235168 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] nacl_io: add initial sigaction(2) implemenation.sbc@chromium.org2013-11-1411-151/+184
| | | | | | | | | | | Also, move tests for signal/kill/sigaction to kernel_proxy_test.cc. R=binji@chromium.org Review URL: https://codereview.chromium.org/69933015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@235146 0039d316-1c4b-4281-b951-d872f2087c98
* Add build target for nacl_io from the NaCl SDK.plundblad@chromium.org2013-11-145-2/+115
| | | | | | | | | | BUG=316353 R=noelallen CC=bradnelson Review URL: https://codereview.chromium.org/61763014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@235053 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] Add exit code to ppapi_simple's PS_EXIT_MESSAGE.sbc@chromium.org2013-11-134-14/+9
| | | | | | | | R=binji@chromium.org Review URL: https://codereview.chromium.org/69333002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234927 0039d316-1c4b-4281-b951-d872f2087c98
* NaCl docs: Simplify/fix description of location of nacl-gdbmseaborn@chromium.org2013-11-131-10/+8
| | | | | | | | | | | | | | | | | | The suggestion that developers can use "arm-nacl-gdb" is wrong: there's no GDB in the ARM GCC toolchain. But there's no need for it, either: the GDB in the x86 toolchains is meant to be built with ARM support. There's also no need to select which copy of GDB you use based on newlib vs. glibc or x86-32 vs. x86-64: these toolchains contain the same GDB. BUG=none TEST="make" in native_client_sdk/src/doc Review URL: https://codereview.chromium.org/70623006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234732 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] Run browser tests with --disable-component-updatejvoung@chromium.org2013-11-121-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | The PNaCl installer is more aggressive right now and checks for updates on each pexe load. Disable this behavior to test the copy of PNaCl that is already built instead of downloading the "official" one. A separate CL will make this less aggressive, but it's not clear if that will be flexible enough to detect pre-built copies of PNaCl vs official copies. E.g., if it's just based on min_version vs cur_version of official copies then it will ignore the pre-built copies. Re-enable nacl_io_test. It was timing out before because of the installation delay. The installation delay is less now due to component updater timer tweaks (2 seconds), but having --disable-component-update reduces that to 0. BUG=315253 NOTRY=true (sdk only) Review URL: https://codereview.chromium.org/70633002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234638 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] AppEngine: IE9 doesn't support "hidden" attribute, so fake it.binji@chromium.org2013-11-121-0/+4
| | | | | | | | | | BUG=none R=sbc@chromium.org TBR=sbc@chromium.org Review URL: https://codereview.chromium.org/69943002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234462 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] AppEngine: Fix navigation on the demo pages.binji@chromium.org2013-11-122-107/+169
| | | | | | | | | | | | | * Back/Forward works * Set title properly * Highlight navbar BUG=none TBR=sbc@chromium.org Review URL: https://codereview.chromium.org/69933002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234397 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] Fix lua demo to require 80 columns.sbc@chromium.org2013-11-123-2/+7
| | | | | | | | | | | | | | | Also, update the version of hterm to match the lua build we are using. Also, roll the version of naclports that we build lua from to being in the version that doesn't require html5fs mount to succeed. R=binji@chromium.org Review URL: https://codereview.chromium.org/68163009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234364 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] AppEngine: Update all demos to have FPS counterbinji@chromium.org2013-11-1220-52/+194
| | | | | | | | | BUG=none R=nfullagar@chromium.org, sbc@chromium.org Review URL: https://codereview.chromium.org/59023005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234348 0039d316-1c4b-4281-b951-d872f2087c98
* NaCl docs: Fix various nitsmseaborn@chromium.org2013-11-122-12/+12
| | | | | | | | | | | | | | | | | | | | | | "Wide variety" shouldn't be hyphenated. "Command line" is usually two words. "C compiler" is not usually hyphenated. .a archives are the same thing as static libraries, so say "i.e." rather than "e.g.". "-o" is usually written with a space after. Clean up some link texts. BUG=none TEST="make" in native_client_sdk/src/doc Review URL: https://codereview.chromium.org/68263005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234343 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] AppEngine: Add error dialog when loaded from unsupported browserbinji@chromium.org2013-11-124-42/+138
| | | | | | | | | BUG=316975 R=sbc@chromium.org Review URL: https://codereview.chromium.org/68413004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234341 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] Update lua version on gonacl.appspot.com.sbc@chromium.org2013-11-126-36/+232
| | | | | | | | | | | | Also, integrate latest naclterm.js from naclports and add exit code to PS_EXIT_MESSAGE sent by ppapi_simple on exit. R=binji@chromium.org Review URL: https://codereview.chromium.org/69273002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234339 0039d316-1c4b-4281-b951-d872f2087c98
* Fix typo in NaCl debugging docsmseaborn@chromium.org2013-11-111-1/+1
| | | | | | | | | BUG=none TEST="make" in native_client_sdk/src/doc Review URL: https://codereview.chromium.org/69123003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234291 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] AppEngine: update smoothlife, improve UIbinji@chromium.org2013-11-114-14/+92
| | | | | | | | | | | | | | | | * The new smoothlife allows for float value scaling * Select box for thread count * Select box for simulation size * Slider for zoom * Make the buttons thinner and put them on one line (makes the page less long) BUG=none R=sbc@chromium.org Review URL: https://codereview.chromium.org/68013002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234236 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] Update version of lua example binary on appspot.com.sbc@chromium.org2013-11-112-3/+1
| | | | | | | | | | | | | This version fixes an issue with readline not knowing the correct terminal size. Also, remove debug ARG1 and ARG2 settings from naclterm.js. R=binji@chromium.org Review URL: https://codereview.chromium.org/67173006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234229 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] AppEngine: update lua page and executable.sbc@chromium.org2013-11-103-71/+94
| | | | | | | | | | | | This new .pexe inludes fixes to nacl_io that fix issues with readline. The version of naclterm has also been updated to the latest one in naclports. R=binji@chromium.org Review URL: https://codereview.chromium.org/67643002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234186 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] ppapi_simple: Allow initial terminal size to to be set on startup.sbc@chromium.org2013-11-093-5/+34
| | | | | | | | | | | | | | Allow the initial terminal size to be set via the PS_TTY_ROWS and PS_TTY_COLS environment variables. This allows ppapi_simple application to know the TTY size before the main function runs. R=binji@chromium.org Review URL: https://codereview.chromium.org/66343004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234130 0039d316-1c4b-4281-b951-d872f2087c98
* Request 24-bit framebuffers when using xvfb-run.ncbray@chromium.org2013-11-091-1/+7
| | | | | | | | | | xvfb-run defaults to 8-bit framebuffers, which was causing problems for Aura. BUG=316687 Review URL: https://codereview.chromium.org/67423003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234109 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] nacl_io: signal() and sigset() return SIG_DFL by default.sbc@chromium.org2013-11-091-4/+2
| | | | | | | | | | | SIG_IGN has a special meaning and should not be returned by default. This was confusing readline in naclports. R=binji@chromium.org Review URL: https://codereview.chromium.org/65363005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234060 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] AppEngine: URL paths /demo/<example name> works.binji@chromium.org2013-11-0925-59/+94
| | | | | | | | | | | | | | | * /demo works now * Also moved /static/pnacl-demo-<foo> => /static/foo * Redirect /demo/<garbage> to /demo/ * Stripping final slash: /demo/bullet/ => /demo/bullet * Clicking a link will correctly update your URL BUG=none R=sbc@chromium.org Review URL: https://codereview.chromium.org/67473003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234057 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] Add pepper_32, remove pepper_26 from manifest template.binji@chromium.org2013-11-081-14/+14
| | | | | | | | | | | | Also -- just use dummy values for the template file, these will all be set to the correct values by update_nacl_manifest.py BUG=none R=sbc@chromium.org Review URL: https://codereview.chromium.org/61903003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234012 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] AppEngine: fix smoothlife build.binji@chromium.org2013-11-082-1/+2
| | | | | | | | | | | Also turn off naclports annotation when building AppEngine examples. BUG=none TBR=sbc@chromium.org Review URL: https://codereview.chromium.org/66823003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234010 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] Remove redundant '_pnacl' suffix from PNaCl object files.sbc@chromium.org2013-11-081-8/+8
| | | | | | | | | | | | This suffix is needed for NaCl because we need to build the same object for each architecture. With PNaCl there is only only architecture. R=binji@chromium.org Review URL: https://codereview.chromium.org/67183002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233998 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] AppEngine: Some fixes to the new demo layoutbinji@chromium.org2013-11-0812-57/+167
| | | | | | | | | | | | | | | | | | | | * Use "name" instead of "id" to set iframe contents (fixes firefox) * Set "header" element flex so it doesn't overlap the explanatory text * Increased the max-width of the left panel; this prevents text wrapping on the bullet demo buttons * Use "position: fixed" on the loading cover (so you can't scroll it) * Change all <a> elements to use target="_blank" * Life: s/LIfe/Life/ * SmoothLife: Change control layout, add palette switcher, new presets * SmoothLife: Roll to 9984167 * Lua: Roll Lua to naclports rev 970 BUG=none R=sbc@chromium.org Review URL: https://codereview.chromium.org/67173002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233949 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] add rename(2) support to nacl_io.sbc@chromium.org2013-11-0819-15/+240
| | | | | | | | | | Currently only supported by memfs. R=binji@chromium.org Review URL: https://codereview.chromium.org/64823004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233947 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] nacl_io: fix for opening files with O_TRUNC in memfssbc@chromium.org2013-11-083-13/+36
| | | | | | | | | | Add corresponding test. R=binji@chromium.org Review URL: https://codereview.chromium.org/60803005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233934 0039d316-1c4b-4281-b951-d872f2087c98
* Fix fancy_urllib license for downstream Android WebView toolboliu@chromium.org2013-11-081-1/+1
| | | | | | | | | | | | s/Apache/Apache 2.0/ BUG= NOTRY=true TBR=sbc@chromium.org Review URL: https://codereview.chromium.org/63603004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233830 0039d316-1c4b-4281-b951-d872f2087c98