# Copyright 2022 The Chromium Authors # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. component("common") { output_name = "browsing_topics_common" defines = [ "IS_BROWSING_TOPICS_COMMON_IMPL" ] sources = [ "common_types.cc", "common_types.h", "semantic_tree.cc", "semantic_tree.h", ] deps = [ "//base", "//components/strings:components_strings_grit", "//third_party/blink/public/common", ] } source_set("unit_tests") { testonly = true sources = [ "semantic_tree_unittest.cc" ] deps = [ ":common", "//base/test:test_support", "//components/strings:components_strings_grit", "//third_party/blink/public/common", ] }