summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/xr/BUILD.gn
blob: 2559761839d136d0e5951ea55994b5fc6a9d2cd3 (plain)
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
88
89
90
91
92
93
94
95
96
97
98
# 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("//third_party/blink/renderer/modules/modules.gni")

blink_modules_sources("xr") {
  sources = [
    "navigator_xr.cc",
    "navigator_xr.h",
    "type_converters.cc",
    "type_converters.h",
    "xr.cc",
    "xr.h",
    "xr_anchor.cc",
    "xr_anchor.h",
    "xr_anchor_set.cc",
    "xr_anchor_set.h",
    "xr_bounded_reference_space.cc",
    "xr_bounded_reference_space.h",
    "xr_canvas_input_provider.cc",
    "xr_canvas_input_provider.h",
    "xr_frame.cc",
    "xr_frame.h",
    "xr_frame_provider.cc",
    "xr_frame_provider.h",
    "xr_frame_request_callback_collection.cc",
    "xr_frame_request_callback_collection.h",
    "xr_grip_space.cc",
    "xr_grip_space.h",
    "xr_hit_result.cc",
    "xr_hit_result.h",
    "xr_hit_test_result.cc",
    "xr_hit_test_result.h",
    "xr_hit_test_source.cc",
    "xr_hit_test_source.h",
    "xr_input_source.cc",
    "xr_input_source.h",
    "xr_input_source_array.cc",
    "xr_input_source_array.h",
    "xr_input_source_event.cc",
    "xr_input_source_event.h",
    "xr_input_sources_change_event.cc",
    "xr_input_sources_change_event.h",
    "xr_native_origin_information.cc",
    "xr_native_origin_information.h",
    "xr_object_space.h",
    "xr_plane.cc",
    "xr_plane.h",
    "xr_plane_detection_state.cc",
    "xr_plane_detection_state.h",
    "xr_plane_set.cc",
    "xr_plane_set.h",
    "xr_pose.cc",
    "xr_pose.h",
    "xr_ray.cc",
    "xr_ray.h",
    "xr_reference_space.cc",
    "xr_reference_space.h",
    "xr_reference_space_event.cc",
    "xr_reference_space_event.h",
    "xr_render_state.cc",
    "xr_render_state.h",
    "xr_rigid_transform.cc",
    "xr_rigid_transform.h",
    "xr_session.cc",
    "xr_session.h",
    "xr_session_event.cc",
    "xr_session_event.h",
    "xr_setlike.h",
    "xr_space.cc",
    "xr_space.h",
    "xr_target_ray_space.cc",
    "xr_target_ray_space.h",
    "xr_transient_input_hit_test_result.cc",
    "xr_transient_input_hit_test_result.h",
    "xr_transient_input_hit_test_source.cc",
    "xr_transient_input_hit_test_source.h",
    "xr_utils.cc",
    "xr_utils.h",
    "xr_view.cc",
    "xr_view.h",
    "xr_viewer_pose.cc",
    "xr_viewer_pose.h",
    "xr_viewport.h",
    "xr_webgl_layer.cc",
    "xr_webgl_layer.h",
    "xr_world_information.cc",
    "xr_world_information.h",
    "xr_world_tracking_state.cc",
    "xr_world_tracking_state.h",
  ]

  deps = [
    "//device/vr/public/mojom:mojom_blink",
    "//services/metrics/public/cpp:ukm_builders",
  ]
}