Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(132)

Side by Side Diff: ui/accessibility/BUILD.gn

Issue 2323103002: Add fuzzer for AXTree and fix a couple of bugs it found. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ui/accessibility/ax_tree.cc » ('j') | ui/accessibility/ax_tree_fuzzer.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/test.gni") 10 import("//testing/test.gni")
10 if (is_android) { 11 if (is_android) {
11 import("//build/config/android/rules.gni") 12 import("//build/config/android/rules.gni")
12 } 13 }
13 14
14 component("accessibility") { 15 component("accessibility") {
15 sources = [ 16 sources = [
16 "ax_node.cc", 17 "ax_node.cc",
17 "ax_node.h", 18 "ax_node.h",
18 "ax_node_data.cc", 19 "ax_node_data.cc",
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 json_schema_api("ax_gen") { 147 json_schema_api("ax_gen") {
147 sources = [ 148 sources = [
148 "ax_enums.idl", 149 "ax_enums.idl",
149 ] 150 ]
150 deps = [ 151 deps = [
151 "//base/third_party/dynamic_annotations", 152 "//base/third_party/dynamic_annotations",
152 ] 153 ]
153 root_namespace = "ui" 154 root_namespace = "ui"
154 schemas = true 155 schemas = true
155 } 156 }
157
158 fuzzer_test("ax_tree_fuzzer") {
159 sources = [
160 "ax_tree_fuzzer.cc",
161 ]
162
163 deps = [
164 ":accessibility",
165 ]
166 }
OLDNEW
« no previous file with comments | « no previous file | ui/accessibility/ax_tree.cc » ('j') | ui/accessibility/ax_tree_fuzzer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698