Ignore warnings inline with upstream V8 project.

Change-Id: I29242290ae1c5dc7ed538630256572017abaeb18
2 files changed
tree: b1425e9723e75ea42873d8da7364f3fb75df777e
  1. base/
  2. benchmarks/
  3. build/
  4. docs/
  5. include/
  6. infra/
  7. samples/
  8. src/
  9. test/
  10. testing/
  11. third_party/
  12. tools/
  13. .gitignore
  14. Android.d8.mk
  15. Android.libv8.mk
  16. Android.mk
  17. Android.v8common.mk
  18. AUTHORS
  19. BUILD.gn
  20. ChangeLog
  21. CleanSpec.mk
  22. CODE_OF_CONDUCT.md
  23. codereview.settings
  24. DEPS
  25. LICENSE
  26. LICENSE.strongtalk
  27. LICENSE.v8
  28. LICENSE.valgrind
  29. Makefile
  30. Makefile.android
  31. Makefile.nacl
  32. MODULE_LICENSE_BSD
  33. NOTICE
  34. OWNERS
  35. PRESUBMIT.py
  36. README.md
  37. snapshot_toolchain.gni
  38. V8_MERGE_REVISION
  39. 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://github.com/v8/v8/wiki

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/*

Contributing

Please follow the instructions mentioned on the V8 wiki.