| 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_export.h", | 21 "ax_export.h", |
| 22 "ax_host_delegate.cc", | 22 "ax_host_delegate.cc", |
| 23 "ax_host_delegate.h", | 23 "ax_host_delegate.h", |
| 24 "ax_node.cc", | 24 "ax_node.cc", |
| 25 "ax_node.h", | 25 "ax_node.h", |
| 26 "ax_node_data.cc", | 26 "ax_node_data.cc", |
| 27 "ax_node_data.h", | 27 "ax_node_data.h", |
| 28 "ax_node_position.cc", | 28 "ax_node_position.cc", |
| 29 "ax_node_position.h", | 29 "ax_node_position.h", |
| 30 "ax_position.cc", |
| 30 "ax_position.h", | 31 "ax_position.h", |
| 32 "ax_range.cc", |
| 31 "ax_range.h", | 33 "ax_range.h", |
| 32 "ax_relative_bounds.cc", | 34 "ax_relative_bounds.cc", |
| 33 "ax_relative_bounds.h", | 35 "ax_relative_bounds.h", |
| 34 "ax_role_properties.cc", | 36 "ax_role_properties.cc", |
| 35 "ax_role_properties.h", | 37 "ax_role_properties.h", |
| 36 "ax_serializable_tree.cc", | 38 "ax_serializable_tree.cc", |
| 37 "ax_serializable_tree.h", | 39 "ax_serializable_tree.h", |
| 38 "ax_text_utils.cc", | 40 "ax_text_utils.cc", |
| 39 "ax_text_utils.h", | 41 "ax_text_utils.h", |
| 40 "ax_tree.cc", | 42 "ax_tree.cc", |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 | 199 |
| 198 fuzzer_test("ax_tree_fuzzer") { | 200 fuzzer_test("ax_tree_fuzzer") { |
| 199 sources = [ | 201 sources = [ |
| 200 "ax_tree_fuzzer.cc", | 202 "ax_tree_fuzzer.cc", |
| 201 ] | 203 ] |
| 202 | 204 |
| 203 deps = [ | 205 deps = [ |
| 204 ":accessibility", | 206 ":accessibility", |
| 205 ] | 207 ] |
| 206 } | 208 } |
| OLD | NEW |