| 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("//build/json_schema_api.gni") | 8 import("//build/json_schema_api.gni") |
| 9 import("//testing/libfuzzer/fuzzer_test.gni") | 9 import("//testing/libfuzzer/fuzzer_test.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 "ax_tree.cc", | 32 "ax_tree.cc", |
| 33 "ax_tree.h", | 33 "ax_tree.h", |
| 34 "ax_tree_combiner.cc", | 34 "ax_tree_combiner.cc", |
| 35 "ax_tree_combiner.h", | 35 "ax_tree_combiner.h", |
| 36 "ax_tree_data.cc", | 36 "ax_tree_data.cc", |
| 37 "ax_tree_data.h", | 37 "ax_tree_data.h", |
| 38 "ax_tree_serializer.cc", | 38 "ax_tree_serializer.cc", |
| 39 "ax_tree_serializer.h", | 39 "ax_tree_serializer.h", |
| 40 "ax_tree_source.h", | 40 "ax_tree_source.h", |
| 41 "ax_tree_update.h", | 41 "ax_tree_update.h", |
| 42 "ax_view_state.cc", | |
| 43 "ax_view_state.h", | |
| 44 "platform/ax_platform_node.cc", | 42 "platform/ax_platform_node.cc", |
| 45 "platform/ax_platform_node.h", | 43 "platform/ax_platform_node.h", |
| 46 "platform/ax_platform_node_base.cc", | 44 "platform/ax_platform_node_base.cc", |
| 47 "platform/ax_platform_node_base.h", | 45 "platform/ax_platform_node_base.h", |
| 48 "platform/ax_platform_node_delegate.h", | 46 "platform/ax_platform_node_delegate.h", |
| 49 "platform/ax_platform_node_mac.h", | 47 "platform/ax_platform_node_mac.h", |
| 50 "platform/ax_platform_node_mac.mm", | 48 "platform/ax_platform_node_mac.mm", |
| 51 "platform/ax_platform_node_win.cc", | 49 "platform/ax_platform_node_win.cc", |
| 52 "platform/ax_platform_node_win.h", | 50 "platform/ax_platform_node_win.h", |
| 53 ] | 51 ] |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 | 161 |
| 164 fuzzer_test("ax_tree_fuzzer") { | 162 fuzzer_test("ax_tree_fuzzer") { |
| 165 sources = [ | 163 sources = [ |
| 166 "ax_tree_fuzzer.cc", | 164 "ax_tree_fuzzer.cc", |
| 167 ] | 165 ] |
| 168 | 166 |
| 169 deps = [ | 167 deps = [ |
| 170 ":accessibility", | 168 ":accessibility", |
| 171 ] | 169 ] |
| 172 } | 170 } |
| OLD | NEW |