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

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

Issue 2781613003: Added a class acting as a fake caret for accessibility. (Closed)
Patch Set: Fixed compilation error due to rebase. Created 3 years, 7 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
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", 55 "platform/ax_snapshot_node_android_platform.cc",
56 "platform/ax_snapshot_node_android_platform.h", 56 "platform/ax_snapshot_node_android_platform.h",
57 ] 57 ]
58 58
59 if (has_native_accessibility) { 59 if (has_native_accessibility) {
60 sources += [ 60 sources += [
61 "platform/ax_fake_caret_win.cc",
62 "platform/ax_fake_caret_win.h",
61 "platform/ax_platform_node.cc", 63 "platform/ax_platform_node.cc",
62 "platform/ax_platform_node.h", 64 "platform/ax_platform_node.h",
63 "platform/ax_platform_node_base.cc", 65 "platform/ax_platform_node_base.cc",
64 "platform/ax_platform_node_base.h", 66 "platform/ax_platform_node_base.h",
65 "platform/ax_platform_node_delegate.h", 67 "platform/ax_platform_node_delegate.h",
66 "platform/ax_platform_node_mac.h", 68 "platform/ax_platform_node_mac.h",
67 "platform/ax_platform_node_mac.mm", 69 "platform/ax_platform_node_mac.mm",
68 "platform/ax_platform_node_win.cc", 70 "platform/ax_platform_node_win.cc",
69 "platform/ax_platform_node_win.h", 71 "platform/ax_platform_node_win.h",
70 ] 72 ]
71 } 73 }
72 74
73 defines = [ "ACCESSIBILITY_IMPLEMENTATION" ] 75 defines = [ "ACCESSIBILITY_IMPLEMENTATION" ]
74 76
75 public_deps = [ 77 public_deps = [
76 ":ax_gen", 78 ":ax_gen",
77 "//base", 79 "//base",
78 "//base:i18n", 80 "//base:i18n",
79 "//ui/base", 81 "//ui/base",
80 "//ui/gfx", 82 "//ui/gfx",
81 "//ui/gfx/geometry", 83 "//ui/gfx/geometry",
82 "//ui/strings", 84 "//ui/strings",
83 ] 85 ]
84 86
85 if (is_win) { 87 if (is_win) {
86 public_deps += [ "//third_party/iaccessible2" ] 88 public_deps += [ "//third_party/iaccessible2" ]
89 libs = [ "oleacc.lib" ]
87 } 90 }
88 91
89 if (is_mac) { 92 if (is_mac) {
90 libs = [ 93 libs = [
91 "AppKit.framework", 94 "AppKit.framework",
92 "Foundation.framework", 95 "Foundation.framework",
93 ] 96 ]
94 } 97 }
95 98
96 if (use_atk) { 99 if (use_atk) {
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 196
194 fuzzer_test("ax_tree_fuzzer") { 197 fuzzer_test("ax_tree_fuzzer") {
195 sources = [ 198 sources = [
196 "ax_tree_fuzzer.cc", 199 "ax_tree_fuzzer.cc",
197 ] 200 ]
198 201
199 deps = [ 202 deps = [
200 ":accessibility", 203 ":accessibility",
201 ] 204 ]
202 } 205 }
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_aura.cc ('k') | ui/accessibility/ax_enums.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698