| 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 import("//ui/base/ui_features.gni") | 11 import("//ui/base/ui_features.gni") |
| 12 | 12 |
| 13 if (is_android) { | 13 if (is_android) { |
| 14 import("//build/config/android/rules.gni") | 14 import("//build/config/android/rules.gni") |
| 15 } | 15 } |
| 16 | 16 |
| 17 component("accessibility") { | 17 component("accessibility") { |
| 18 sources = [ | 18 sources = [ |
| 19 "ax_action_data.cc", | 19 "ax_action_data.cc", |
| 20 "ax_action_data.h", | 20 "ax_action_data.h", |
| 21 "ax_host_delegate.cc", | 21 "ax_host_delegate.cc", |
| 22 "ax_host_delegate.h", | 22 "ax_host_delegate.h", |
| 23 "ax_node.cc", | 23 "ax_node.cc", |
| 24 "ax_node.h", | 24 "ax_node.h", |
| 25 "ax_node_data.cc", | 25 "ax_node_data.cc", |
| 26 "ax_node_data.h", | 26 "ax_node_data.h", |
| 27 "ax_node_position.cc", | 27 "ax_node_position.cc", |
| 28 "ax_node_position.h", | 28 "ax_node_position.h", |
| 29 "ax_position.cc", |
| 29 "ax_position.h", | 30 "ax_position.h", |
| 31 "ax_range.cc", |
| 30 "ax_range.h", | 32 "ax_range.h", |
| 31 "ax_relative_bounds.cc", | 33 "ax_relative_bounds.cc", |
| 32 "ax_relative_bounds.h", | 34 "ax_relative_bounds.h", |
| 33 "ax_role_properties.cc", | 35 "ax_role_properties.cc", |
| 34 "ax_role_properties.h", | 36 "ax_role_properties.h", |
| 35 "ax_serializable_tree.cc", | 37 "ax_serializable_tree.cc", |
| 36 "ax_serializable_tree.h", | 38 "ax_serializable_tree.h", |
| 37 "ax_text_utils.cc", | 39 "ax_text_utils.cc", |
| 38 "ax_text_utils.h", | 40 "ax_text_utils.h", |
| 39 "ax_tree.cc", | 41 "ax_tree.cc", |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 | 198 |
| 197 fuzzer_test("ax_tree_fuzzer") { | 199 fuzzer_test("ax_tree_fuzzer") { |
| 198 sources = [ | 200 sources = [ |
| 199 "ax_tree_fuzzer.cc", | 201 "ax_tree_fuzzer.cc", |
| 200 ] | 202 ] |
| 201 | 203 |
| 202 deps = [ | 204 deps = [ |
| 203 ":accessibility", | 205 ":accessibility", |
| 204 ] | 206 ] |
| 205 } | 207 } |
| OLD | NEW |