| OLD | NEW |
| 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/json_schema_api.gni") | 5 import("//build/json_schema_api.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("accessibility") { | 8 component("accessibility") { |
| 9 sources = [ | 9 sources = [ |
| 10 "ax_node.cc", | 10 "ax_node.cc", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 "ax_tree_update.h", | 24 "ax_tree_update.h", |
| 25 "ax_view_state.cc", | 25 "ax_view_state.cc", |
| 26 "ax_view_state.h", | 26 "ax_view_state.h", |
| 27 "platform/ax_platform_node.cc", | 27 "platform/ax_platform_node.cc", |
| 28 "platform/ax_platform_node.h", | 28 "platform/ax_platform_node.h", |
| 29 "platform/ax_platform_node_base.cc", | 29 "platform/ax_platform_node_base.cc", |
| 30 "platform/ax_platform_node_base.h", | 30 "platform/ax_platform_node_base.h", |
| 31 "platform/ax_platform_node_delegate.h", | 31 "platform/ax_platform_node_delegate.h", |
| 32 "platform/ax_platform_node_mac.h", | 32 "platform/ax_platform_node_mac.h", |
| 33 "platform/ax_platform_node_mac.mm", | 33 "platform/ax_platform_node_mac.mm", |
| 34 "platform/ax_platform_node_win.cc", |
| 34 "platform/ax_platform_node_win.h", | 35 "platform/ax_platform_node_win.h", |
| 35 "platform/ax_platform_node_win.cc", | |
| 36 ] | 36 ] |
| 37 | 37 |
| 38 defines = [ "ACCESSIBILITY_IMPLEMENTATION" ] | 38 defines = [ "ACCESSIBILITY_IMPLEMENTATION" ] |
| 39 | 39 |
| 40 public_deps = [ | 40 public_deps = [ |
| 41 ":ax_gen", | 41 ":ax_gen", |
| 42 "//base", | 42 "//base", |
| 43 "//ui/gfx", | 43 "//ui/gfx", |
| 44 "//ui/gfx/geometry", | 44 "//ui/gfx/geometry", |
| 45 ] | 45 ] |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 json_schema_api("ax_gen") { | 89 json_schema_api("ax_gen") { |
| 90 sources = [ | 90 sources = [ |
| 91 "ax_enums.idl", | 91 "ax_enums.idl", |
| 92 ] | 92 ] |
| 93 deps = [ | 93 deps = [ |
| 94 "//base/third_party/dynamic_annotations", | 94 "//base/third_party/dynamic_annotations", |
| 95 ] | 95 ] |
| 96 root_namespace = "ui" | 96 root_namespace = "ui" |
| 97 schemas = true | 97 schemas = true |
| 98 } | 98 } |
| OLD | NEW |