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

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

Issue 2940923003: a11y: Move CreateTextMarker[Range] to TextMarkerHelperMac.
Patch Set: self review Created 3 years, 6 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
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("//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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 "platform/ax_fake_caret_win.h", 64 "platform/ax_fake_caret_win.h",
65 "platform/ax_platform_node.cc", 65 "platform/ax_platform_node.cc",
66 "platform/ax_platform_node.h", 66 "platform/ax_platform_node.h",
67 "platform/ax_platform_node_base.cc", 67 "platform/ax_platform_node_base.cc",
68 "platform/ax_platform_node_base.h", 68 "platform/ax_platform_node_base.h",
69 "platform/ax_platform_node_delegate.h", 69 "platform/ax_platform_node_delegate.h",
70 "platform/ax_platform_node_mac.h", 70 "platform/ax_platform_node_mac.h",
71 "platform/ax_platform_node_mac.mm", 71 "platform/ax_platform_node_mac.mm",
72 "platform/ax_platform_node_win.cc", 72 "platform/ax_platform_node_win.cc",
73 "platform/ax_platform_node_win.h", 73 "platform/ax_platform_node_win.h",
74 "platform/text_marker_helper_mac.h",
75 "platform/text_marker_helper_mac.mm",
74 ] 76 ]
75 } 77 }
76 78
77 defines = [ "ACCESSIBILITY_IMPLEMENTATION" ] 79 defines = [ "ACCESSIBILITY_IMPLEMENTATION" ]
78 80
79 public_deps = [ 81 public_deps = [
80 ":ax_gen", 82 ":ax_gen",
81 "//base", 83 "//base",
82 "//base:i18n", 84 "//base:i18n",
83 "//ui/base", 85 "//ui/base",
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 200
199 fuzzer_test("ax_tree_fuzzer") { 201 fuzzer_test("ax_tree_fuzzer") {
200 sources = [ 202 sources = [
201 "ax_tree_fuzzer.cc", 203 "ax_tree_fuzzer.cc",
202 ] 204 ]
203 205
204 deps = [ 206 deps = [
205 ":accessibility", 207 ":accessibility",
206 ] 208 ]
207 } 209 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698