blob: 92ce3fb22a351604737af61b309e5756a896cde0 [file] [log] [blame]
# Copyright 2020 The Chromium Authors. All rights reserved.
# 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")
proto_library("attribution_reporting_proto") {
sources = [ "attribution_reporting.proto" ]
}
mojom("mojo_bindings") {
sources = [ "attribution_internals.mojom" ]
public_deps = [ "//url/mojom:url_mojom_origin" ]
webui_module_path = "/"
cpp_typemaps = [
{
types = [
{
mojom = "attribution_internals.mojom.AggregatableAttributionReportID"
cpp = "::content::AttributionReport::AggregatableAttributionData::Id"
},
{
mojom = "attribution_internals.mojom.EventLevelReportID"
cpp = "::content::AttributionReport::EventLevelData::Id"
},
{
mojom = "attribution_internals.mojom.ReportID"
cpp = "::content::AttributionReport::Id"
},
{
mojom = "attribution_internals.mojom.SourceType"
cpp = "::content::AttributionSourceType"
},
{
mojom = "attribution_internals.mojom.ReportType"
cpp = "::content::AttributionReport::ReportType"
},
]
traits_headers = [
"attribution_internals_mojom_traits.h",
"attribution_report.h",
"attribution_source_type.h",
]
traits_sources = [ "attribution_internals_mojom_traits.cc" ]
traits_deps = [
":attribution_reporting_proto",
# //content/common/aggregatable_report.mojom is transitively included.
"//content/common:mojo_bindings",
]
},
]
}