Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(105)

Side by Side Diff: ui/accessibility/BUILD.gn

Issue 2934953004: De-templatize ui::AXPosition
Patch Set: rebase Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_action_data.cc", 19 "ax_action_data.cc",
20 "ax_action_data.h", 20 "ax_action_data.h",
21 "ax_export.h", 21 "ax_export.h",
22 "ax_host_delegate.cc", 22 "ax_host_delegate.cc",
23 "ax_host_delegate.h", 23 "ax_host_delegate.h",
24 "ax_node.cc", 24 "ax_node.cc",
25 "ax_node.h", 25 "ax_node.h",
26 "ax_node_data.cc", 26 "ax_node_data.cc",
27 "ax_node_data.h", 27 "ax_node_data.h",
28 "ax_node_position.cc", 28 "ax_node_position.cc",
29 "ax_node_position.h", 29 "ax_node_position.h",
30 "ax_position.cc",
30 "ax_position.h", 31 "ax_position.h",
32 "ax_range.cc",
31 "ax_range.h", 33 "ax_range.h",
32 "ax_relative_bounds.cc", 34 "ax_relative_bounds.cc",
33 "ax_relative_bounds.h", 35 "ax_relative_bounds.h",
34 "ax_role_properties.cc", 36 "ax_role_properties.cc",
35 "ax_role_properties.h", 37 "ax_role_properties.h",
36 "ax_serializable_tree.cc", 38 "ax_serializable_tree.cc",
37 "ax_serializable_tree.h", 39 "ax_serializable_tree.h",
38 "ax_text_utils.cc", 40 "ax_text_utils.cc",
39 "ax_text_utils.h", 41 "ax_text_utils.h",
40 "ax_tree.cc", 42 "ax_tree.cc",
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 199
198 fuzzer_test("ax_tree_fuzzer") { 200 fuzzer_test("ax_tree_fuzzer") {
199 sources = [ 201 sources = [
200 "ax_tree_fuzzer.cc", 202 "ax_tree_fuzzer.cc",
201 ] 203 ]
202 204
203 deps = [ 205 deps = [
204 ":accessibility", 206 ":accessibility",
205 ] 207 ]
206 } 208 }
OLDNEW
« no previous file with comments | « content/browser/accessibility/web_contents_accessibility_android.cc ('k') | ui/accessibility/ax_node_position.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698