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

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

Issue 2210763002: MacViews a11y: Sync VoiceOver cursor with keyboard focus. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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("//build/json_schema_api.gni") 8 import("//build/json_schema_api.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 if (is_android) { 10 if (is_android) {
(...skipping 23 matching lines...) Expand all
34 # G_DEFINE_TYPE automatically generates a *get_instance_private 34 # G_DEFINE_TYPE automatically generates a *get_instance_private
35 # inline function after glib 2.37. That's unused. Prevent to 35 # inline function after glib 2.37. That's unused. Prevent to
36 # complain about it. 36 # complain about it.
37 "-Wno-unused-function", 37 "-Wno-unused-function",
38 ] 38 ]
39 } 39 }
40 } 40 }
41 41
42 component("accessibility") { 42 component("accessibility") {
43 sources = [ 43 sources = [
44 "../../tmp-traceclass.h",
45 "../../tmp-traceclass.mm",
44 "ax_node.cc", 46 "ax_node.cc",
45 "ax_node.h", 47 "ax_node.h",
46 "ax_node_data.cc", 48 "ax_node_data.cc",
47 "ax_node_data.h", 49 "ax_node_data.h",
48 "ax_serializable_tree.cc", 50 "ax_serializable_tree.cc",
49 "ax_serializable_tree.h", 51 "ax_serializable_tree.h",
50 "ax_text_utils.cc", 52 "ax_text_utils.cc",
51 "ax_text_utils.h", 53 "ax_text_utils.h",
52 "ax_tree.cc", 54 "ax_tree.cc",
53 "ax_tree.h", 55 "ax_tree.h",
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 json_schema_api("ax_gen") { 177 json_schema_api("ax_gen") {
176 sources = [ 178 sources = [
177 "ax_enums.idl", 179 "ax_enums.idl",
178 ] 180 ]
179 deps = [ 181 deps = [
180 "//base/third_party/dynamic_annotations", 182 "//base/third_party/dynamic_annotations",
181 ] 183 ]
182 root_namespace = "ui" 184 root_namespace = "ui"
183 schemas = true 185 schemas = true
184 } 186 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698