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

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

Issue 2781613003: Added a class acting as a fake caret for accessibility. (Closed)
Patch Set: Activate the fake caret only when Windows is focused. Created 3 years, 8 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 ] 55 ]
56 56
57 if (has_native_accessibility) { 57 if (has_native_accessibility) {
58 sources += [ 58 sources += [
59 "platform/ax_fake_caret_win.cc",
60 "platform/ax_fake_caret_win.h",
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",
65 "platform/ax_platform_node_mac.mm", 67 "platform/ax_platform_node_mac.mm",
66 "platform/ax_platform_node_win.cc", 68 "platform/ax_platform_node_win.cc",
67 "platform/ax_platform_node_win.h", 69 "platform/ax_platform_node_win.h",
68 ] 70 ]
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698