BUILD.gn 678 B

123456789101112131415161718192021222324252627
  1. # Copyright 2020 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. import("//build/config/features.gni")
  5. component("browser") {
  6. sources = [
  7. "on_load_script_injector_host.cc",
  8. "on_load_script_injector_host.h",
  9. ]
  10. defines = [ "ON_LOAD_SCRIPT_INJECTOR_IMPLEMENTATION" ]
  11. public_deps = [
  12. "//base",
  13. "//components/on_load_script_injector:export",
  14. "//url",
  15. ]
  16. deps = [
  17. "//components/on_load_script_injector:on_load_script_injector_mojom",
  18. "//content/public/browser",
  19. "//mojo/public/cpp/bindings",
  20. "//third_party/blink/public/common",
  21. ]
  22. }