summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/accessibility/BUILD.gn
blob: 507e6b44e081951631cbf0c5cb3812661ef06511 (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
# 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("//third_party/blink/renderer/modules/modules.gni")

blink_modules_sources("accessibility") {
  sources = [
    "ax_enums.cc",
    "ax_enums.h",
    "ax_image_map_link.cc",
    "ax_image_map_link.h",
    "ax_inline_text_box.cc",
    "ax_inline_text_box.h",
    "ax_layout_object.cc",
    "ax_layout_object.h",
    "ax_list_box.cc",
    "ax_list_box.h",
    "ax_list_box_option.cc",
    "ax_list_box_option.h",
    "ax_media_control.cc",
    "ax_media_control.h",
    "ax_media_element.cc",
    "ax_media_element.h",
    "ax_menu_list.cc",
    "ax_menu_list.h",
    "ax_menu_list_option.cc",
    "ax_menu_list_option.h",
    "ax_menu_list_popup.cc",
    "ax_menu_list_popup.h",
    "ax_mock_object.cc",
    "ax_mock_object.h",
    "ax_node_object.cc",
    "ax_node_object.h",
    "ax_object.cc",
    "ax_object.h",
    "ax_object_cache_impl.cc",
    "ax_object_cache_impl.h",
    "ax_position.cc",
    "ax_position.h",
    "ax_progress_indicator.cc",
    "ax_progress_indicator.h",
    "ax_range.cc",
    "ax_range.h",
    "ax_relation_cache.cc",
    "ax_relation_cache.h",
    "ax_selection.cc",
    "ax_selection.h",
    "ax_slider.cc",
    "ax_slider.h",
    "ax_sparse_attribute_setter.cc",
    "ax_sparse_attribute_setter.h",
    "ax_validation_message.cc",
    "ax_validation_message.h",
    "ax_virtual_object.cc",
    "ax_virtual_object.h",
    "inspector_accessibility_agent.cc",
    "inspector_accessibility_agent.h",
    "inspector_type_builder_helper.cc",
    "inspector_type_builder_helper.h",
  ]

  deps = [
    "//third_party/blink/public/strings:strings_grit",
    "//third_party/blink/renderer/modules/media_controls:media_controls",
    "//third_party/blink/renderer/modules/permissions:permissions",
    "//ui/accessibility:ax_base",
    "//ui/accessibility:ax_enums_mojo_blink",
  ]

  # The modules/accessibility/ depends closely on core/ --
  # include the core pch for faster Windows compilation times.
  configs += [ "//third_party/blink/renderer/core:blink_core_pch" ]
}