| 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/libfuzzer/fuzzer_test.gni") | 9 import("//testing/libfuzzer/fuzzer_test.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| 11 if (is_android) { | 11 if (is_android) { |
| 12 import("//build/config/android/rules.gni") | 12 import("//build/config/android/rules.gni") |
| 13 } | 13 } |
| 14 | 14 |
| 15 component("accessibility") { | 15 component("accessibility") { |
| 16 sources = [ | 16 sources = [ |
| 17 "ax_node.cc", | 17 "ax_node.cc", |
| 18 "ax_node.h", | 18 "ax_node.h", |
| 19 "ax_node_data.cc", | 19 "ax_node_data.cc", |
| 20 "ax_node_data.h", | 20 "ax_node_data.h", |
| 21 "ax_node_position.cc", |
| 22 "ax_node_position.h", |
| 23 "ax_position.h", |
| 24 "ax_range.h", |
| 21 "ax_relative_bounds.cc", | 25 "ax_relative_bounds.cc", |
| 22 "ax_relative_bounds.h", | 26 "ax_relative_bounds.h", |
| 23 "ax_serializable_tree.cc", | 27 "ax_serializable_tree.cc", |
| 24 "ax_serializable_tree.h", | 28 "ax_serializable_tree.h", |
| 25 "ax_text_utils.cc", | 29 "ax_text_utils.cc", |
| 26 "ax_text_utils.h", | 30 "ax_text_utils.h", |
| 27 "ax_tree.cc", | 31 "ax_tree.cc", |
| 28 "ax_tree.h", | 32 "ax_tree.h", |
| 29 "ax_tree_combiner.cc", | 33 "ax_tree_combiner.cc", |
| 30 "ax_tree_combiner.h", | 34 "ax_tree_combiner.h", |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 ] | 117 ] |
| 114 | 118 |
| 115 deps = [ | 119 deps = [ |
| 116 ":accessibility", | 120 ":accessibility", |
| 117 ] | 121 ] |
| 118 } | 122 } |
| 119 | 123 |
| 120 test("accessibility_unittests") { | 124 test("accessibility_unittests") { |
| 121 sources = [ | 125 sources = [ |
| 122 "ax_generated_tree_unittest.cc", | 126 "ax_generated_tree_unittest.cc", |
| 127 "ax_node_position_unittest.cc", |
| 123 "ax_text_utils_unittest.cc", | 128 "ax_text_utils_unittest.cc", |
| 124 "ax_tree_combiner_unittest.cc", | 129 "ax_tree_combiner_unittest.cc", |
| 125 "ax_tree_serializer_unittest.cc", | 130 "ax_tree_serializer_unittest.cc", |
| 126 "ax_tree_unittest.cc", | 131 "ax_tree_unittest.cc", |
| 127 "platform/ax_platform_node_win_unittest.cc", | 132 "platform/ax_platform_node_win_unittest.cc", |
| 128 ] | 133 ] |
| 129 | 134 |
| 130 deps = [ | 135 deps = [ |
| 131 ":accessibility", | 136 ":accessibility", |
| 132 ":test_support", | 137 ":test_support", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 157 | 162 |
| 158 fuzzer_test("ax_tree_fuzzer") { | 163 fuzzer_test("ax_tree_fuzzer") { |
| 159 sources = [ | 164 sources = [ |
| 160 "ax_tree_fuzzer.cc", | 165 "ax_tree_fuzzer.cc", |
| 161 ] | 166 ] |
| 162 | 167 |
| 163 deps = [ | 168 deps = [ |
| 164 ":accessibility", | 169 ":accessibility", |
| 165 ] | 170 ] |
| 166 } | 171 } |
| OLD | NEW |