mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
50 lines
1020 B
Plaintext
50 lines
1020 B
Plaintext
|
# Copyright 2016 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")
|
||
|
|
||
|
mojom("mojo") {
|
||
|
sources = [
|
||
|
"notification.mojom",
|
||
|
"notifier_id.mojom",
|
||
|
]
|
||
|
|
||
|
public_deps = [
|
||
|
"//mojo/common:common_custom_types",
|
||
|
"//ui/gfx/image/mojo:interfaces",
|
||
|
"//url/mojo:url_mojom_gurl",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
mojom("test_interfaces") {
|
||
|
testonly = true
|
||
|
sources = [
|
||
|
"traits_test_service.mojom",
|
||
|
]
|
||
|
|
||
|
public_deps = [
|
||
|
":mojo",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
source_set("struct_traits") {
|
||
|
sources = [
|
||
|
"notification_struct_traits.cc",
|
||
|
"notification_struct_traits.h",
|
||
|
"notifier_id_struct_traits.cc",
|
||
|
"notifier_id_struct_traits.h",
|
||
|
]
|
||
|
|
||
|
public_deps = [
|
||
|
":mojo_shared_cpp_sources",
|
||
|
"//base",
|
||
|
"//mojo/common:struct_traits",
|
||
|
"//mojo/public/cpp/bindings",
|
||
|
"//ui/gfx",
|
||
|
"//ui/gfx/image/mojo:struct_traits",
|
||
|
"//ui/message_center",
|
||
|
"//url/mojo:url_mojom_gurl",
|
||
|
]
|
||
|
}
|