| 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_host_delegate.cc", |
| 21 "ax_host_delegate.h", |
| 20 "ax_node.cc", | 22 "ax_node.cc", |
| 21 "ax_node.h", | 23 "ax_node.h", |
| 22 "ax_node_data.cc", | 24 "ax_node_data.cc", |
| 23 "ax_node_data.h", | 25 "ax_node_data.h", |
| 24 "ax_node_position.cc", | 26 "ax_node_position.cc", |
| 25 "ax_node_position.h", | 27 "ax_node_position.h", |
| 26 "ax_position.h", | 28 "ax_position.h", |
| 27 "ax_range.h", | 29 "ax_range.h", |
| 28 "ax_relative_bounds.cc", | 30 "ax_relative_bounds.cc", |
| 29 "ax_relative_bounds.h", | 31 "ax_relative_bounds.h", |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 | 171 |
| 170 fuzzer_test("ax_tree_fuzzer") { | 172 fuzzer_test("ax_tree_fuzzer") { |
| 171 sources = [ | 173 sources = [ |
| 172 "ax_tree_fuzzer.cc", | 174 "ax_tree_fuzzer.cc", |
| 173 ] | 175 ] |
| 174 | 176 |
| 175 deps = [ | 177 deps = [ |
| 176 ":accessibility", | 178 ":accessibility", |
| 177 ] | 179 ] |
| 178 } | 180 } |
| OLD | NEW |