| # Copyright 2020 The Chromium Authors |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| import("//build/config/features.gni") |
| |
| component("renderer") { |
| sources = [ |
| "on_load_script_injector.cc", |
| "on_load_script_injector.h", |
| ] |
| |
| defines = [ "ON_LOAD_SCRIPT_INJECTOR_IMPLEMENTATION" ] |
| |
| public_deps = [ "//base" ] |
| |
| deps = [ |
| "//components/on_load_script_injector:export", |
| "//components/on_load_script_injector:on_load_script_injector_mojom", |
| "//content/public/common", |
| "//content/public/renderer", |
| "//mojo/public/cpp/bindings", |
| "//third_party/blink/public/common", |
| ] |
| } |