| # Copyright 2024 The Chromium Authors |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| import("//extensions/buildflags/buildflags.gni") |
| |
| assert(enable_extensions) |
| |
| source_set("web_view") { |
| sources = [ |
| "chrome_web_view_internal_api.cc", |
| "chrome_web_view_internal_api.h", |
| ] |
| |
| configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| |
| public_deps = [ "//extensions/browser" ] |
| |
| deps = [ |
| "//base", |
| "//chrome/browser/extensions", |
| "//chrome/browser/profiles:profile", |
| "//chrome/common/extensions/api", |
| "//content/public/browser", |
| "//extensions/common", |
| ] |
| } |