| # 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_core, |
| "Cannot depend on extensions because enable_extensions_core=false.") |
| |
| source_set("browsing_data") { |
| sources = [ |
| "browsing_data_api.cc", |
| "browsing_data_api.h", |
| ] |
| |
| configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| |
| deps = [ |
| "//base", |
| "//chrome/browser/browsing_data:constants", |
| "//chrome/browser/profiles", |
| "//chrome/browser/signin", |
| "//chrome/browser/sync", |
| "//chrome/browser/ui", |
| "//components/browsing_data/content", |
| "//components/browsing_data/core", |
| "//components/history/core/common", |
| "//components/signin/core/browser", |
| "//components/signin/public/identity_manager", |
| "//content/public/browser", |
| "//extensions/browser", |
| "//extensions/common", |
| "//net", |
| "//skia", |
| ] |
| } |