1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 2018 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") {
assert(is_mac)
sources = [
"alert.mojom",
"application.mojom",
"color_panel.mojom",
"native_widget_ns_window.mojom",
"native_widget_ns_window_host.mojom",
"select_file_dialog.mojom",
"text_input_host.mojom",
]
public_deps = [
"//mojo/public/mojom/base",
"//services/network/public/mojom",
"//ui/base/accelerators/mojom",
"//ui/base/mojom",
"//ui/display/mojom",
"//ui/events/mojom",
"//ui/gfx/geometry/mojom",
"//ui/gfx/mojom",
"//ui/gfx/range/mojom",
]
}
|