| 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("//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", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 "platform/ax_platform_node.h", | 27 "platform/ax_platform_node.h", |
| 28 "platform/ax_platform_node_base.cc", | 28 "platform/ax_platform_node_base.cc", |
| 29 "platform/ax_platform_node_base.h", | 29 "platform/ax_platform_node_base.h", |
| 30 "platform/ax_platform_node_delegate.h", | 30 "platform/ax_platform_node_delegate.h", |
| 31 "platform/ax_platform_node_mac.h", | 31 "platform/ax_platform_node_mac.h", |
| 32 "platform/ax_platform_node_mac.mm", | 32 "platform/ax_platform_node_mac.mm", |
| 33 ] | 33 ] |
| 34 | 34 |
| 35 defines = [ "ACCESSIBILITY_IMPLEMENTATION" ] | 35 defines = [ "ACCESSIBILITY_IMPLEMENTATION" ] |
| 36 | 36 |
| 37 forward_dependent_configs_from = [ ":ax_gen" ] | 37 public_deps = [ |
| 38 | |
| 39 deps = [ | |
| 40 ":ax_gen", | 38 ":ax_gen", |
| 41 "//base", | 39 "//base", |
| 42 "//ui/gfx", | 40 "//ui/gfx", |
| 43 "//ui/gfx/geometry", | 41 "//ui/gfx/geometry", |
| 44 ] | 42 ] |
| 45 } | 43 } |
| 46 | 44 |
| 47 source_set("test_support") { | 45 source_set("test_support") { |
| 48 sources = [ | 46 sources = [ |
| 49 "tree_generator.cc", | 47 "tree_generator.cc", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 72 "//ui/gfx/geometry", | 70 "//ui/gfx/geometry", |
| 73 ] | 71 ] |
| 74 } | 72 } |
| 75 | 73 |
| 76 generated_extensions_api("ax_gen") { | 74 generated_extensions_api("ax_gen") { |
| 77 sources = [ "ax_enums.idl" ] | 75 sources = [ "ax_enums.idl" ] |
| 78 deps = [ "//base/third_party/dynamic_annotations" ] | 76 deps = [ "//base/third_party/dynamic_annotations" ] |
| 79 root_namespace = "ui" | 77 root_namespace = "ui" |
| 80 schemas = true | 78 schemas = true |
| 81 } | 79 } |
| OLD | NEW |