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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
# Copyright 2017 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")
# This needs to be conditionally-compiled since the typemaps are
# unconditionally-included from //mojo/public/tools/bindings/mojom.gni. The
# inclusion is done through read_file(), which does not respect the global
# defines for GN, so it itself cannot use the "is_chromeos" variable.
if (is_chromeos) {
mojom("common") {
sources = [
"accessibility_helper.mojom",
"app.mojom",
"arc_bridge.mojom",
"audio.mojom",
"auth.mojom",
"backup_settings.mojom",
"bitmap.mojom",
"bluetooth.mojom",
"boot_phase_monitor.mojom",
"cast_receiver.mojom",
"cert_store.mojom",
"clipboard.mojom",
"crash_collector.mojom",
"enterprise_reporting.mojom",
"file_system.mojom",
"ime.mojom",
"intent_helper.mojom",
"kiosk.mojom",
"lock_screen.mojom",
"metrics.mojom",
"midis.mojom",
"net.mojom",
"notifications.mojom",
"obb_mounter.mojom",
"oemcrypto.mojom",
"oemcrypto_daemon.mojom",
"policy.mojom",
"power.mojom",
"print.mojom",
"process.mojom",
"rotation_lock.mojom",
"scale_factor.mojom",
"screen_capture.mojom",
"storage_manager.mojom",
"timer.mojom",
"tracing.mojom",
"tts.mojom",
"usb_host.mojom",
"voice_interaction_arc_home.mojom",
"voice_interaction_framework.mojom",
"volume_mounter.mojom",
"wake_lock.mojom",
"wallpaper.mojom",
]
public_deps = [
":media",
"//device/usb/public/mojom",
"//mojo/common:common_custom_types",
"//mojo/public/mojom/base",
"//ui/gfx/geometry/mojo",
]
}
}
# Media related mojo interfaces. There are used by
# //services/ui/public/interfaces. We have this separate mojom target to avoid
# pulling in unnecessary interfaces,
mojom("media") {
sources = [
"gfx.mojom",
"protected_buffer_manager.mojom",
"video.mojom",
"video_common.mojom",
"video_decode_accelerator.mojom",
"video_encode_accelerator.mojom",
"video_protected_buffer_allocator.mojom",
]
public_deps = [
"//mojo/common:common_custom_types",
"//ui/gfx/geometry/mojo",
]
}
|