| 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") |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 "ax_tree_combiner.cc", | 40 "ax_tree_combiner.cc", |
| 41 "ax_tree_combiner.h", | 41 "ax_tree_combiner.h", |
| 42 "ax_tree_data.cc", | 42 "ax_tree_data.cc", |
| 43 "ax_tree_data.h", | 43 "ax_tree_data.h", |
| 44 "ax_tree_id_registry.cc", | 44 "ax_tree_id_registry.cc", |
| 45 "ax_tree_id_registry.h", | 45 "ax_tree_id_registry.h", |
| 46 "ax_tree_serializer.cc", | 46 "ax_tree_serializer.cc", |
| 47 "ax_tree_serializer.h", | 47 "ax_tree_serializer.h", |
| 48 "ax_tree_source.h", | 48 "ax_tree_source.h", |
| 49 "ax_tree_update.h", | 49 "ax_tree_update.h", |
| 50 "platform/ax_android_constants.cc", |
| 51 "platform/ax_android_constants.h", |
| 50 "platform/ax_platform_node.cc", | 52 "platform/ax_platform_node.cc", |
| 51 "platform/ax_platform_node.h", | 53 "platform/ax_platform_node.h", |
| 52 "platform/ax_platform_node_base.cc", | 54 "platform/ax_platform_node_base.cc", |
| 53 "platform/ax_platform_node_base.h", | 55 "platform/ax_platform_node_base.h", |
| 54 "platform/ax_platform_node_delegate.h", | 56 "platform/ax_platform_node_delegate.h", |
| 55 "platform/ax_platform_node_mac.h", | 57 "platform/ax_platform_node_mac.h", |
| 56 "platform/ax_platform_node_mac.mm", | 58 "platform/ax_platform_node_mac.mm", |
| 57 "platform/ax_platform_node_win.cc", | 59 "platform/ax_platform_node_win.cc", |
| 58 "platform/ax_platform_node_win.h", | 60 "platform/ax_platform_node_win.h", |
| 59 ] | 61 ] |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 | 169 |
| 168 fuzzer_test("ax_tree_fuzzer") { | 170 fuzzer_test("ax_tree_fuzzer") { |
| 169 sources = [ | 171 sources = [ |
| 170 "ax_tree_fuzzer.cc", | 172 "ax_tree_fuzzer.cc", |
| 171 ] | 173 ] |
| 172 | 174 |
| 173 deps = [ | 175 deps = [ |
| 174 ":accessibility", | 176 ":accessibility", |
| 175 ] | 177 ] |
| 176 } | 178 } |
| OLD | NEW |