BUILD.gn 515 B

12345678910111213141516171819202122
  1. # Copyright 2019 The Chromium Authors.All rights reserved.
  2. # Use of this source code is governed by a BSD - style license that can be
  3. # found in the LICENSE file.
  4. source_set("js_sandbox") {
  5. sources = [
  6. "js_sandbox_isolate.cc",
  7. "js_sandbox_isolate.h",
  8. ]
  9. deps = [
  10. "//android_webview/common",
  11. "//android_webview/js_sandbox:js_sandbox_jni_headers",
  12. "//base",
  13. "//gin",
  14. ]
  15. configs += [
  16. "//tools/v8_context_snapshot:use_v8_context_snapshot",
  17. "//v8:external_startup_data",
  18. ]
  19. }