| # Copyright 2023 The Chromium Authors |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| source_set("features") { |
| sources = [ |
| "compose_features.cc", |
| "compose_features.h", |
| ] |
| |
| deps = [ "//base" ] |
| } |
| |
| static_library("browser") { |
| sources = [ |
| "compose_client.h", |
| "compose_dialog_controller.h", |
| "compose_manager.h", |
| "compose_manager_impl.cc", |
| "compose_manager_impl.h", |
| ] |
| |
| public_deps = [ ":features" ] |
| |
| deps = [ |
| "//base", |
| "//components/autofill/core/browser", |
| "//components/autofill/core/common", |
| "//components/keyed_service/core", |
| ] |
| } |
| |
| static_library("test_support") { |
| testonly = true |
| sources = [ |
| "mock_compose_manager.cc", |
| "mock_compose_manager.h", |
| ] |
| |
| public_deps = [ ":browser" ] |
| |
| deps = [ |
| "//components/autofill/core/browser", |
| "//components/autofill/core/common", |
| "//testing/gmock", |
| ] |
| } |