| 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("//testing/libfuzzer/fuzzer_test.gni") | 8 import("//testing/libfuzzer/fuzzer_test.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//tools/json_schema_compiler/json_schema_api.gni") | 10 import("//tools/json_schema_compiler/json_schema_api.gni") |
| 11 | 11 |
| 12 if (is_android) { | 12 if (is_android) { |
| 13 import("//build/config/android/rules.gni") | 13 import("//build/config/android/rules.gni") |
| 14 } | 14 } |
| 15 | 15 |
| 16 component("accessibility") { | 16 component("accessibility") { |
| 17 sources = [ | 17 sources = [ |
| 18 "ax_action_data.cc", | 18 "ax_action_data.cc", |
| 19 "ax_action_data.h", | 19 "ax_action_data.h", |
| 20 "ax_node.cc", | 20 "ax_node.cc", |
| 21 "ax_node.h", | 21 "ax_node.h", |
| 22 "ax_node_data.cc", | 22 "ax_node_data.cc", |
| 23 "ax_node_data.h", | 23 "ax_node_data.h", |
| 24 "ax_node_position.cc", | 24 "ax_node_position.cc", |
| 25 "ax_node_position.h", | 25 "ax_node_position.h", |
| 26 "ax_position.h", | 26 "ax_position.h", |
| 27 "ax_range.h", | 27 "ax_range.h", |
| 28 "ax_relative_bounds.cc", | 28 "ax_relative_bounds.cc", |
| 29 "ax_relative_bounds.h", | 29 "ax_relative_bounds.h", |
| 30 "ax_role_properties.cc", |
| 31 "ax_role_properties.h", |
| 30 "ax_serializable_tree.cc", | 32 "ax_serializable_tree.cc", |
| 31 "ax_serializable_tree.h", | 33 "ax_serializable_tree.h", |
| 32 "ax_text_utils.cc", | 34 "ax_text_utils.cc", |
| 33 "ax_text_utils.h", | 35 "ax_text_utils.h", |
| 34 "ax_tree.cc", | 36 "ax_tree.cc", |
| 35 "ax_tree.h", | 37 "ax_tree.h", |
| 36 "ax_tree_combiner.cc", | 38 "ax_tree_combiner.cc", |
| 37 "ax_tree_combiner.h", | 39 "ax_tree_combiner.h", |
| 38 "ax_tree_data.cc", | 40 "ax_tree_data.cc", |
| 39 "ax_tree_data.h", | 41 "ax_tree_data.h", |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 | 167 |
| 166 fuzzer_test("ax_tree_fuzzer") { | 168 fuzzer_test("ax_tree_fuzzer") { |
| 167 sources = [ | 169 sources = [ |
| 168 "ax_tree_fuzzer.cc", | 170 "ax_tree_fuzzer.cc", |
| 169 ] | 171 ] |
| 170 | 172 |
| 171 deps = [ | 173 deps = [ |
| 172 ":accessibility", | 174 ":accessibility", |
| 173 ] | 175 ] |
| 174 } | 176 } |
| OLD | NEW |