Drop dynamic_annotations license

dynamic_annotations was recently dropped from
base/third_party but it probably went unused in
native_client for years.

Bug: 1282422
Bug: 605605
Change-Id: I616a4ce86675e7ef6cca4bb540b390e9301689fd
Reviewed-on: https://chromium-review.googlesource.com/c/native_client/src/native_client/+/5473883
Reviewed-by: Nico Weber <thakis@chromium.org>
1 file changed
tree: 015002d337be0747a1becb1f1ac18b957d142b9f
  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. .vpython
  17. .vpython3
  18. AUTHORS
  19. BUILD.gn
  20. codereview.settings
  21. config.gni
  22. COPYING
  23. DEPS
  24. DIR_METADATA
  25. LICENSE
  26. NOTICE
  27. OWNERS
  28. PRESUBMIT.py
  29. README.md
  30. run.py
  31. scons
  32. scons.bat
  33. scons.py
  34. SConstruct
  35. whitespace.txt
README.md

Native Client

Native Client is a deprecated sandboxing technology. It is currently used by a few third party chrome extensions and chrome apps. Many of the original project pages are not longer available. Some documentation can be found at:

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.