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") | |
10 import("//testing/test.gni") | 9 import("//testing/test.gni") |
11 if (is_android) { | 10 if (is_android) { |
12 import("//build/config/android/rules.gni") | 11 import("//build/config/android/rules.gni") |
13 } | 12 } |
14 | 13 |
15 component("accessibility") { | 14 component("accessibility") { |
16 sources = [ | 15 sources = [ |
17 "ax_node.cc", | 16 "ax_node.cc", |
18 "ax_node.h", | 17 "ax_node.h", |
19 "ax_node_data.cc", | 18 "ax_node_data.cc", |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 json_schema_api("ax_gen") { | 146 json_schema_api("ax_gen") { |
148 sources = [ | 147 sources = [ |
149 "ax_enums.idl", | 148 "ax_enums.idl", |
150 ] | 149 ] |
151 deps = [ | 150 deps = [ |
152 "//base/third_party/dynamic_annotations", | 151 "//base/third_party/dynamic_annotations", |
153 ] | 152 ] |
154 root_namespace = "ui" | 153 root_namespace = "ui" |
155 schemas = true | 154 schemas = true |
156 } | 155 } |
157 | |
158 fuzzer_test("ax_tree_fuzzer") { | |
159 sources = [ | |
160 "ax_tree_fuzzer.cc", | |
161 ] | |
162 | |
163 deps = [ | |
164 ":accessibility", | |
165 ] | |
166 } | |
OLD | NEW |