Update revision for PNaCl

Update 5dfe030a71ca66e72c5719ef5034c2ed24706c43 -> 62bfd122aee87d4eb4a7876950e18c793c626cd0

Pull the following PNaCl changes into NaCl:
  70540f6: (petar.jovanovic@rt-rk.com) PNaCl: Update llvm revision in pnacl/COMPONENT_REVISIONS
    | 63a5544: (petar.jovanovic@rt-rk.com) Cherry-pick r247546: [mips] Save a copy of MipsABIInfo ...
  42ae93a: (dschuff@chromium.org) PNaCl Driver: Accept argument to --build-id flag

BUG= nativeclient:4391
BUG= none
R= dschuff@chromium.org, petar.jovanovic@rt-rk.com
TEST=git cl try
(Please LGTM this change and tick the "commit" box)

Change-Id: I8ee3ff64678ea0b2f16a4a2199fc706e692de482
Reviewed-on: https://chromium-review.googlesource.com/453878
Reviewed-by: Brad Nelson <bradnelson@chromium.org>
3 files changed
tree: 2c3cd127ed22c9d42023eedcd5649c870c79fbb7
  1. build/
  2. buildbot/
  3. docs/
  4. documentation/
  5. infra/
  6. pnacl/
  7. pynacl/
  8. site_scons/
  9. src/
  10. tests/
  11. toolchain_build/
  12. toolchain_revisions/
  13. tools/
  14. .gitignore
  15. .gn
  16. AUTHORS
  17. BUILD.gn
  18. codereview.settings
  19. config.gni
  20. COPYING
  21. DEPS
  22. LICENSE
  23. NOTICE
  24. OWNERS
  25. PRESUBMIT.py
  26. README.md
  27. run.py
  28. scons
  29. scons.bat
  30. scons.py
  31. SConstruct
README.md

Native Client

Welcome to Native Client. For the latest information about Native Client, see the Native Client project page.

Documentation

Most of the Native Client project documentation is available online:

Directory structure

The following list describes major files and directories that you‘ll see in your working copy of the repository, including some directories that don’t exist until you've built Native Client. Paths are relative to the native_client directory.

  • COPYING NOTICE README.md RELEASE_NOTES documentation/: Documentation, release, and license information.

  • SConstruct scons.bat scons scons-out/ site_scons/: Build-related files. The scons.bat and scons files, with data from SConstruct, let you build Native Client and its tests. The scons-out and site-scons directories don‘t exist in the git repository; they’re created when Native Client is built. The scons-out/*/staging directories contain files, such as the Native Client plug-in and compiled examples, that let you use and test Native Client.

  • src/: Core source code for Native Client.

  • src/include/: Header files that are missing from some platforms and are used by more than one major part of Native Client

  • src/shared/: Source code that's used by both trusted code (such as the service runtime) and untrusted code (such as Native Client modules)

  • src/third_party: Other people's source code

  • src/trusted/: Source code that's used only by trusted code

  • src/untrusted/: Source code that's used only by untrusted code

  • tests/common/: Source code for examples and tests.

  • ../third_party/: Third-party source code and binaries that aren't part of the service runtime. When built, the Native Client toolchain is in src/third_party/nacl_sdk/.

  • tools/: Utilities such as the plug-in installer.