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
|
# 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("mojom") {
sources = [
"ax_action_data.mojom",
"ax_assistant_structure.mojom",
"ax_event.mojom",
"ax_host.mojom",
"ax_node_data.mojom",
"ax_tree_data.mojom",
"ax_tree_id.mojom",
"ax_tree_update.mojom",
]
public_deps = [
"//mojo/public/mojom/base",
"//ui/accessibility:ax_enums_mojo",
"//ui/gfx/geometry/mojo",
"//ui/gfx/mojo",
"//ui/gfx/range/mojo",
"//url/mojom:url_mojom_gurl",
]
}
|