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

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

Issue 420653003: MacViews: Accessibility bridge (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge accessibility_platform target to accessibility Created 6 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 | Annotate | Revision Log
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("//extensions/generated_extensions_api.gni") 5 import("//extensions/generated_extensions_api.gni")
6 6
7 component("accessibility") { 7 component("accessibility") {
8 sources = [ 8 sources = [
9 "ax_node.cc", 9 "ax_node.cc",
10 "ax_node.h", 10 "ax_node.h",
11 "ax_node_data.cc", 11 "ax_node_data.cc",
12 "ax_node_data.h", 12 "ax_node_data.h",
13 "ax_serializable_tree.cc", 13 "ax_serializable_tree.cc",
14 "ax_serializable_tree.h", 14 "ax_serializable_tree.h",
15 "ax_text_utils.cc", 15 "ax_text_utils.cc",
16 "ax_text_utils.h", 16 "ax_text_utils.h",
17 "ax_tree.cc", 17 "ax_tree.cc",
18 "ax_tree.h", 18 "ax_tree.h",
19 "ax_tree_serializer.cc", 19 "ax_tree_serializer.cc",
20 "ax_tree_serializer.h", 20 "ax_tree_serializer.h",
21 "ax_tree_source.h", 21 "ax_tree_source.h",
22 "ax_tree_update.cc", 22 "ax_tree_update.cc",
23 "ax_tree_update.h", 23 "ax_tree_update.h",
24 "ax_view_state.cc", 24 "ax_view_state.cc",
25 "ax_view_state.h", 25 "ax_view_state.h",
26 "platform/ax_platform_node.cc",
27 "platform/ax_platform_node.h",
28 "platform/ax_platform_node_base.cc",
29 "platform/ax_platform_node_base.h",
30 "platform/ax_platform_node_delegate.h",
31 "platform/ax_platform_node_mac.h",
32 "platform/ax_platform_node_mac.mm",
26 ] 33 ]
27 34
28 defines = [ "ACCESSIBILITY_IMPLEMENTATION" ] 35 defines = [ "ACCESSIBILITY_IMPLEMENTATION" ]
29 36
30 forward_dependent_configs_from = [ ":ax_gen" ] 37 forward_dependent_configs_from = [ ":ax_gen" ]
31 38
32 deps = [ 39 deps = [
33 ":ax_gen", 40 ":ax_gen",
34 "//base", 41 "//base",
35 "//ui/gfx", 42 "//ui/gfx",
(...skipping 30 matching lines...) Expand all
66 ] 73 ]
67 } 74 }
68 75
69 generated_extensions_api("ax_gen") { 76 generated_extensions_api("ax_gen") {
70 sources = [ "ax_enums.idl" ] 77 sources = [ "ax_enums.idl" ]
71 deps = [ "//base/third_party/dynamic_annotations" ] 78 deps = [ "//base/third_party/dynamic_annotations" ]
72 root_namespace = "" 79 root_namespace = ""
73 impl_dir = "." 80 impl_dir = "."
74 bundle = true 81 bundle = true
75 } 82 }
OLDNEW
« no previous file with comments | « content/browser/accessibility/browser_accessibility_cocoa.mm ('k') | ui/accessibility/accessibility.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698