OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/linux/pkg_config.gni") | 5 import("//build/config/linux/pkg_config.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//testing/libfuzzer/fuzzer_test.gni") | 8 import("//testing/libfuzzer/fuzzer_test.gni") |
9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
10 import("//tools/json_schema_compiler/json_schema_api.gni") | 10 import("//tools/json_schema_compiler/json_schema_api.gni") |
11 import("//ui/base/ui_features.gni") | 11 import("//ui/base/ui_features.gni") |
12 | 12 |
13 if (is_android) { | 13 if (is_android) { |
14 import("//build/config/android/rules.gni") | 14 import("//build/config/android/rules.gni") |
15 } | 15 } |
16 | 16 |
17 component("accessibility") { | 17 component("accessibility") { |
18 sources = [ | 18 sources = [ |
| 19 "ax_abstract_position.cc", |
| 20 "ax_abstract_position.h", |
19 "ax_action_data.cc", | 21 "ax_action_data.cc", |
20 "ax_action_data.h", | 22 "ax_action_data.h", |
21 "ax_export.h", | 23 "ax_export.h", |
22 "ax_host_delegate.cc", | 24 "ax_host_delegate.cc", |
23 "ax_host_delegate.h", | 25 "ax_host_delegate.h", |
24 "ax_node.cc", | 26 "ax_node.cc", |
25 "ax_node.h", | 27 "ax_node.h", |
26 "ax_node_data.cc", | 28 "ax_node_data.cc", |
27 "ax_node_data.h", | 29 "ax_node_data.h", |
28 "ax_node_position.cc", | 30 "ax_node_position.cc", |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 "platform/ax_fake_caret_win.h", | 65 "platform/ax_fake_caret_win.h", |
64 "platform/ax_platform_node.cc", | 66 "platform/ax_platform_node.cc", |
65 "platform/ax_platform_node.h", | 67 "platform/ax_platform_node.h", |
66 "platform/ax_platform_node_base.cc", | 68 "platform/ax_platform_node_base.cc", |
67 "platform/ax_platform_node_base.h", | 69 "platform/ax_platform_node_base.h", |
68 "platform/ax_platform_node_delegate.h", | 70 "platform/ax_platform_node_delegate.h", |
69 "platform/ax_platform_node_mac.h", | 71 "platform/ax_platform_node_mac.h", |
70 "platform/ax_platform_node_mac.mm", | 72 "platform/ax_platform_node_mac.mm", |
71 "platform/ax_platform_node_win.cc", | 73 "platform/ax_platform_node_win.cc", |
72 "platform/ax_platform_node_win.h", | 74 "platform/ax_platform_node_win.h", |
| 75 "platform/text_marker_helper_mac.h", |
| 76 "platform/text_marker_helper_mac.mm", |
73 ] | 77 ] |
74 } | 78 } |
75 | 79 |
76 defines = [ "ACCESSIBILITY_IMPLEMENTATION" ] | 80 defines = [ "ACCESSIBILITY_IMPLEMENTATION" ] |
77 | 81 |
78 public_deps = [ | 82 public_deps = [ |
79 ":ax_gen", | 83 ":ax_gen", |
80 "//base", | 84 "//base", |
81 "//base:i18n", | 85 "//base:i18n", |
82 "//ui/base", | 86 "//ui/base", |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 | 201 |
198 fuzzer_test("ax_tree_fuzzer") { | 202 fuzzer_test("ax_tree_fuzzer") { |
199 sources = [ | 203 sources = [ |
200 "ax_tree_fuzzer.cc", | 204 "ax_tree_fuzzer.cc", |
201 ] | 205 ] |
202 | 206 |
203 deps = [ | 207 deps = [ |
204 ":accessibility", | 208 ":accessibility", |
205 ] | 209 ] |
206 } | 210 } |
OLD | NEW |