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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 "ax_tree_id_registry.cc", | 45 "ax_tree_id_registry.cc", |
46 "ax_tree_id_registry.h", | 46 "ax_tree_id_registry.h", |
47 "ax_tree_serializer.cc", | 47 "ax_tree_serializer.cc", |
48 "ax_tree_serializer.h", | 48 "ax_tree_serializer.h", |
49 "ax_tree_source.h", | 49 "ax_tree_source.h", |
50 "ax_tree_update.h", | 50 "ax_tree_update.h", |
51 "platform/ax_android_constants.cc", | 51 "platform/ax_android_constants.cc", |
52 "platform/ax_android_constants.h", | 52 "platform/ax_android_constants.h", |
53 "platform/ax_platform_unique_id.cc", | 53 "platform/ax_platform_unique_id.cc", |
54 "platform/ax_platform_unique_id.h", | 54 "platform/ax_platform_unique_id.h", |
| 55 "platform/ax_snapshot_node_android_platform.cc", |
| 56 "platform/ax_snapshot_node_android_platform.h", |
55 ] | 57 ] |
56 | 58 |
57 if (has_native_accessibility) { | 59 if (has_native_accessibility) { |
58 sources += [ | 60 sources += [ |
59 "platform/ax_platform_node.cc", | 61 "platform/ax_platform_node.cc", |
60 "platform/ax_platform_node.h", | 62 "platform/ax_platform_node.h", |
61 "platform/ax_platform_node_base.cc", | 63 "platform/ax_platform_node_base.cc", |
62 "platform/ax_platform_node_base.h", | 64 "platform/ax_platform_node_base.h", |
63 "platform/ax_platform_node_delegate.h", | 65 "platform/ax_platform_node_delegate.h", |
64 "platform/ax_platform_node_mac.h", | 66 "platform/ax_platform_node_mac.h", |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 | 193 |
192 fuzzer_test("ax_tree_fuzzer") { | 194 fuzzer_test("ax_tree_fuzzer") { |
193 sources = [ | 195 sources = [ |
194 "ax_tree_fuzzer.cc", | 196 "ax_tree_fuzzer.cc", |
195 ] | 197 ] |
196 | 198 |
197 deps = [ | 199 deps = [ |
198 ":accessibility", | 200 ":accessibility", |
199 ] | 201 ] |
200 } | 202 } |
OLD | NEW |