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

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

Issue 2640123004: Initial support for native accessibility in ARC (Closed)
Patch Set: |window| can be nullptr Created 3 years, 10 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")
(...skipping 19 matching lines...) Expand all
30 "ax_serializable_tree.cc", 30 "ax_serializable_tree.cc",
31 "ax_serializable_tree.h", 31 "ax_serializable_tree.h",
32 "ax_text_utils.cc", 32 "ax_text_utils.cc",
33 "ax_text_utils.h", 33 "ax_text_utils.h",
34 "ax_tree.cc", 34 "ax_tree.cc",
35 "ax_tree.h", 35 "ax_tree.h",
36 "ax_tree_combiner.cc", 36 "ax_tree_combiner.cc",
37 "ax_tree_combiner.h", 37 "ax_tree_combiner.h",
38 "ax_tree_data.cc", 38 "ax_tree_data.cc",
39 "ax_tree_data.h", 39 "ax_tree_data.h",
40 "ax_tree_id_registry.cc",
dmazzoni 2017/02/09 01:18:09 Oh good, I like it better here anyway
41 "ax_tree_id_registry.h",
40 "ax_tree_serializer.cc", 42 "ax_tree_serializer.cc",
41 "ax_tree_serializer.h", 43 "ax_tree_serializer.h",
42 "ax_tree_source.h", 44 "ax_tree_source.h",
43 "ax_tree_update.h", 45 "ax_tree_update.h",
44 "platform/ax_platform_node.cc", 46 "platform/ax_platform_node.cc",
45 "platform/ax_platform_node.h", 47 "platform/ax_platform_node.h",
46 "platform/ax_platform_node_base.cc", 48 "platform/ax_platform_node_base.cc",
47 "platform/ax_platform_node_base.h", 49 "platform/ax_platform_node_base.h",
48 "platform/ax_platform_node_delegate.h", 50 "platform/ax_platform_node_delegate.h",
49 "platform/ax_platform_node_mac.h", 51 "platform/ax_platform_node_mac.h",
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 167
166 fuzzer_test("ax_tree_fuzzer") { 168 fuzzer_test("ax_tree_fuzzer") {
167 sources = [ 169 sources = [
168 "ax_tree_fuzzer.cc", 170 "ax_tree_fuzzer.cc",
169 ] 171 ]
170 172
171 deps = [ 173 deps = [
172 ":accessibility", 174 ":accessibility",
173 ] 175 ]
174 } 176 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698