Upgrade V8 to 8.8.278.14

Bug: 162604069
Bug: 167389063
Test: gts-tradefed run gts-dev --module GtsGmscoreHostTestCases
      --test com.google.android.gts.devicepolicy.DeviceOwnerTest#testProxyPacProxyTest
Test: m -j proxy_resolver_v8_unittest && adb sync && adb shell \
      /data/nativetest/proxy_resolver_v8_unittest/proxy_resolver_v8_unittest

Change-Id: Ifb09923b9d7f6d8990fb062d7dc0294edf2c098e
4129 files changed
tree: b19ea3df19e9d94e668f6c5a8df9277a567a1db1
  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. .clang-format
  16. .gitignore
  17. .gn
  18. .landmines
  19. .ycm_extra_conf.py
  20. Android.base.bp
  21. Android.bp
  22. Android.initializers.bp
  23. Android.libbase.bp
  24. Android.libplatform.bp
  25. Android.libsampler.bp
  26. Android.torque.bp
  27. AUTHORS
  28. BUILD.gn
  29. ChangeLog
  30. CODE_OF_CONDUCT.md
  31. codereview.settings
  32. COMMON_OWNERS
  33. DEPS
  34. DIR_METADATA
  35. ENG_REVIEW_OWNERS
  36. genmakefiles.py
  37. INFRA_OWNERS
  38. INTL_OWNERS
  39. LICENSE
  40. LICENSE.fdlibm
  41. LICENSE.strongtalk
  42. LICENSE.v8
  43. LICENSE.valgrind
  44. Makefile
  45. Makefile.android
  46. merge.py
  47. MIPS_OWNERS
  48. MODULE_LICENSE_BSD
  49. NOTICE
  50. OWNERS
  51. OWNERS.android
  52. PPC_OWNERS
  53. PRESUBMIT.py
  54. README.md
  55. S390_OWNERS
  56. snapshot_toolchain.gni
  57. V8_MERGE_REVISION
  58. 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.