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

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

Issue 1407413002: Move some AX attrs from AXNodeData to AXTreeData. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 2 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/ui.gni") 6 import("//build/config/ui.gni")
7 import("//build/json_schema_api.gni") 7 import("//build/json_schema_api.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 if (is_android) { 9 if (is_android) {
10 import("//build/config/android/rules.gni") 10 import("//build/config/android/rules.gni")
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 "ax_node.cc", 43 "ax_node.cc",
44 "ax_node.h", 44 "ax_node.h",
45 "ax_node_data.cc", 45 "ax_node_data.cc",
46 "ax_node_data.h", 46 "ax_node_data.h",
47 "ax_serializable_tree.cc", 47 "ax_serializable_tree.cc",
48 "ax_serializable_tree.h", 48 "ax_serializable_tree.h",
49 "ax_text_utils.cc", 49 "ax_text_utils.cc",
50 "ax_text_utils.h", 50 "ax_text_utils.h",
51 "ax_tree.cc", 51 "ax_tree.cc",
52 "ax_tree.h", 52 "ax_tree.h",
53 "ax_tree_data.cc",
54 "ax_tree_data.h",
53 "ax_tree_serializer.cc", 55 "ax_tree_serializer.cc",
54 "ax_tree_serializer.h", 56 "ax_tree_serializer.h",
55 "ax_tree_source.h", 57 "ax_tree_source.h",
56 "ax_tree_update.h", 58 "ax_tree_update.h",
57 "ax_view_state.cc", 59 "ax_view_state.cc",
58 "ax_view_state.h", 60 "ax_view_state.h",
59 "platform/ax_platform_node.cc", 61 "platform/ax_platform_node.cc",
60 "platform/ax_platform_node.h", 62 "platform/ax_platform_node.h",
61 "platform/ax_platform_node_base.cc", 63 "platform/ax_platform_node_base.cc",
62 "platform/ax_platform_node_base.h", 64 "platform/ax_platform_node_base.h",
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 json_schema_api("ax_gen") { 164 json_schema_api("ax_gen") {
163 sources = [ 165 sources = [
164 "ax_enums.idl", 166 "ax_enums.idl",
165 ] 167 ]
166 deps = [ 168 deps = [
167 "//base/third_party/dynamic_annotations", 169 "//base/third_party/dynamic_annotations",
168 ] 170 ]
169 root_namespace = "ui" 171 root_namespace = "ui"
170 schemas = true 172 schemas = true
171 } 173 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698