Merge tag 'android-security-11.0.0_r49' into int/11/fp3

Android security 11.0.0 release 49

* tag 'android-security-11.0.0_r49':
  Update v8 cfi blocklist
  Upgrade V8 to 8.8.278.14
  LiteralBuffer::ExpandBuffer always grows
  [parser] Fix off-by-one in parameter count check

Change-Id: I96afc6d71353b56305399e9bade840f959b3bd68
tree: 1d4669c80ae865ae85d4bac39fb8f943eff8e75e
  1. base/
  2. build_overrides/
  3. custom_deps/
  4. docs/
  5. gni/
  6. gnparser/
  7. include/
  8. infra/
  9. samples/
  10. snapshot/
  11. src/
  12. test/
  13. testing/
  14. third_party/
  15. tools/
  16. .clang-format
  17. .gitignore
  18. .gn
  19. .landmines
  20. .ycm_extra_conf.py
  21. Android.base.bp
  22. Android.bp
  23. Android.initializers.bp
  24. Android.libbase.bp
  25. Android.libplatform.bp
  26. Android.libsampler.bp
  27. Android.torque.bp
  28. AUTHORS
  29. BUILD.gn
  30. ChangeLog
  31. CODE_OF_CONDUCT.md
  32. codereview.settings
  33. DEPS
  34. DIR_METADATA
  35. genmakefiles.py
  36. LICENSE
  37. LICENSE.fdlibm
  38. LICENSE.strongtalk
  39. LICENSE.v8
  40. LICENSE.valgrind
  41. Makefile
  42. Makefile.android
  43. merge.py
  44. MODULE_LICENSE_BSD
  45. NOTICE
  46. OWNERS.android
  47. PRESUBMIT.py
  48. README.md
  49. snapshot_toolchain.gni
  50. V8_MERGE_REVISION
  51. 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://v8.dev/docs

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 at v8.dev/docs/contribute.