blob: d193038acad67bfd4cf6117ea684ce61291b5c62 [file] [log] [blame]
# Copyright 2021 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/buildflag_header.gni")
import("//build/config/chrome_build.gni")
static_library("ui") {
sources = [
"query_clusters_state.cc",
"query_clusters_state.h",
]
deps = [
"//base",
"//components/history/core/browser",
"//components/history_clusters/core",
"//components/page_image_service",
"//url",
]
}
source_set("unit_tests") {
testonly = true
sources = [ "query_clusters_state_unittest.cc" ]
deps = [
":ui",
"//base/test:test_support",
"//components/history/core/browser",
"//components/history/core/test",
"//components/history_clusters/core",
"//components/history_clusters/core:test_support",
"//testing/gtest",
]
}