| 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/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) { |
| 11 import("//build/config/android/rules.gni") | 11 import("//build/config/android/rules.gni") |
| 12 } | 12 } |
| 13 | 13 |
| 14 component("accessibility") { | 14 component("accessibility") { |
| 15 sources = [ | 15 sources = [ |
| 16 "ax_node.cc", | 16 "ax_node.cc", |
| 17 "ax_node.h", | 17 "ax_node.h", |
| 18 "ax_node_data.cc", | 18 "ax_node_data.cc", |
| 19 "ax_node_data.h", | 19 "ax_node_data.h", |
| 20 "ax_node_position.cc", |
| 21 "ax_node_position.h", |
| 22 "ax_position.h", |
| 20 "ax_relative_bounds.cc", | 23 "ax_relative_bounds.cc", |
| 21 "ax_relative_bounds.h", | 24 "ax_relative_bounds.h", |
| 22 "ax_serializable_tree.cc", | 25 "ax_serializable_tree.cc", |
| 23 "ax_serializable_tree.h", | 26 "ax_serializable_tree.h", |
| 24 "ax_text_utils.cc", | 27 "ax_text_utils.cc", |
| 25 "ax_text_utils.h", | 28 "ax_text_utils.h", |
| 26 "ax_tree.cc", | 29 "ax_tree.cc", |
| 27 "ax_tree.h", | 30 "ax_tree.h", |
| 28 "ax_tree_combiner.cc", | 31 "ax_tree_combiner.cc", |
| 29 "ax_tree_combiner.h", | 32 "ax_tree_combiner.h", |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 ] | 115 ] |
| 113 | 116 |
| 114 deps = [ | 117 deps = [ |
| 115 ":accessibility", | 118 ":accessibility", |
| 116 ] | 119 ] |
| 117 } | 120 } |
| 118 | 121 |
| 119 test("accessibility_unittests") { | 122 test("accessibility_unittests") { |
| 120 sources = [ | 123 sources = [ |
| 121 "ax_generated_tree_unittest.cc", | 124 "ax_generated_tree_unittest.cc", |
| 125 "ax_node_position_unittest.cc", |
| 122 "ax_text_utils_unittest.cc", | 126 "ax_text_utils_unittest.cc", |
| 123 "ax_tree_combiner_unittest.cc", | 127 "ax_tree_combiner_unittest.cc", |
| 124 "ax_tree_serializer_unittest.cc", | 128 "ax_tree_serializer_unittest.cc", |
| 125 "ax_tree_unittest.cc", | 129 "ax_tree_unittest.cc", |
| 126 "platform/ax_platform_node_win_unittest.cc", | 130 "platform/ax_platform_node_win_unittest.cc", |
| 127 ] | 131 ] |
| 128 | 132 |
| 129 deps = [ | 133 deps = [ |
| 130 ":accessibility", | 134 ":accessibility", |
| 131 ":test_support", | 135 ":test_support", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 146 json_schema_api("ax_gen") { | 150 json_schema_api("ax_gen") { |
| 147 sources = [ | 151 sources = [ |
| 148 "ax_enums.idl", | 152 "ax_enums.idl", |
| 149 ] | 153 ] |
| 150 deps = [ | 154 deps = [ |
| 151 "//base/third_party/dynamic_annotations", | 155 "//base/third_party/dynamic_annotations", |
| 152 ] | 156 ] |
| 153 root_namespace = "ui" | 157 root_namespace = "ui" |
| 154 schemas = true | 158 schemas = true |
| 155 } | 159 } |
| OLD | NEW |