Don't build a v8 snapshot.

Every build creates a different /system/lib/libpac.so file because the V8
snapshot changes for each build. To reduce OTA size and allow us to verify
the changes for an OTA, don't use the snapshot.

Bug: http://b/25348136
Change-Id: I9b3c5582c5b2020ab3e144203040c7b84f29e124
2 files changed
tree: 6103641e93ae227a670ec66008c27935594ff409
  1. benchmarks/
  2. build/
  3. include/
  4. preparser/
  5. samples/
  6. src/
  7. test/
  8. testing/
  9. tools/
  10. .gitignore
  11. Android.d8.mk
  12. Android.libv8.mk
  13. Android.mk
  14. Android.mksnapshot.mk
  15. Android.v8common.mk
  16. AUTHORS
  17. BUILD.gn
  18. ChangeLog
  19. CleanSpec.mk
  20. codereview.settings
  21. DEPS
  22. LICENSE
  23. LICENSE.strongtalk
  24. LICENSE.v8
  25. LICENSE.valgrind
  26. Makefile
  27. Makefile.android
  28. Makefile.nacl
  29. MODULE_LICENSE_BSD
  30. NOTICE
  31. OWNERS
  32. PRESUBMIT.py
  33. README.md
  34. SConstruct
  35. V8_MERGE_REVISION
  36. WATCHLISTS
README.md

V8 JavaScript Engine

V8 is Google's open source JavaScript engine.

V8 implements ECMAScript as specified in ECMA-262.

V8 is written in C++ and is used in Google Chrome, the open source browser from Google.

V8 can run standalone, or can be embedded into any C++ application.

V8 Project page: https://code.google.com/p/v8/

Getting the Code

Checkout depot tools, and run

fetch v8

This will checkout V8 into the directory v8 and fetch all of its dependencies. To stay up to date, run

git pull origin gclient sync

For fetching all branches, add the following into your remote configuration in .git/config:

    fetch = +refs/branch-heads/*:refs/remotes/branch-heads/*
    fetch = +refs/tags/*:refs/tags/*