# 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.
import("//mojo/public/tools/bindings/mojom.gni")
import("//third_party/protobuf/proto_library.gni")
source_set("compose") {
sources = [
"type_conversions.cc",
"type_conversions.h",
]
public_deps = [ ":mojo_bindings" ]
deps = [
"//components/optimization_guide/core",
"//components/optimization_guide/proto:optimization_guide_proto",
]
}
mojom("mojo_bindings") {
sources = [ "compose.mojom" ]
public_deps = [
"//components/compose/core/browser:mojo_bindings",
"//mojo/public/mojom/base",
]
webui_module_path = "/"
}