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

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

Issue 1128183010: ATK accessibility support for web content on Aura Linux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixing nits Created 5 years, 5 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 | « content/content_browser.gypi ('k') | no next file » | no next file with comments »
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/ui.gni") 6 import("//build/config/ui.gni")
7 import("//build/json_schema_api.gni") 7 import("//build/json_schema_api.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 if (is_android) { 9 if (is_android) {
10 import("//build/config/android/rules.gni") 10 import("//build/config/android/rules.gni")
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 ":ax_gen", 74 ":ax_gen",
75 "//base", 75 "//base",
76 "//ui/gfx", 76 "//ui/gfx",
77 "//ui/gfx/geometry", 77 "//ui/gfx/geometry",
78 ] 78 ]
79 79
80 if (is_win) { 80 if (is_win) {
81 public_deps += [ "//third_party/iaccessible2" ] 81 public_deps += [ "//third_party/iaccessible2" ]
82 } 82 }
83 83
84 if (use_aura && !is_chromeos && is_linux && use_x11) { 84 if (use_atk) {
85 sources += [ 85 sources += [
86 "platform/atk_util_auralinux.cc", 86 "platform/atk_util_auralinux.cc",
87 "platform/atk_util_auralinux.h", 87 "platform/atk_util_auralinux.h",
88 "platform/ax_platform_node_auralinux.cc", 88 "platform/ax_platform_node_auralinux.cc",
89 "platform/ax_platform_node_auralinux.h", 89 "platform/ax_platform_node_auralinux.h",
90 ] 90 ]
91 91
92 configs += [ 92 configs += [
93 ":atk", 93 ":atk",
94 ":atk_warnings", 94 ":atk_warnings",
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 json_schema_api("ax_gen") { 154 json_schema_api("ax_gen") {
155 sources = [ 155 sources = [
156 "ax_enums.idl", 156 "ax_enums.idl",
157 ] 157 ]
158 deps = [ 158 deps = [
159 "//base/third_party/dynamic_annotations", 159 "//base/third_party/dynamic_annotations",
160 ] 160 ]
161 root_namespace = "ui" 161 root_namespace = "ui"
162 schemas = true 162 schemas = true
163 } 163 }
OLDNEW
« no previous file with comments | « content/content_browser.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698