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

Side by Side Diff: content/browser/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, 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/crypto.gni") 5 import("//build/config/crypto.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("//content/browser/browser.gni") 8 import("//content/browser/browser.gni")
9 import("//media/media_options.gni") 9 import("//media/media_options.gni")
10 10
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 "//ppapi/shared_impl", 263 "//ppapi/shared_impl",
264 ] 264 ]
265 if (!use_ozone || use_pango) { 265 if (!use_ozone || use_pango) {
266 sources -= [ "renderer_host/pepper/pepper_truetype_font_list_ozone.cc" ] 266 sources -= [ "renderer_host/pepper/pepper_truetype_font_list_ozone.cc" ]
267 } 267 }
268 if (!use_pango) { 268 if (!use_pango) {
269 sources -= [ "renderer_host/pepper/pepper_truetype_font_list_pango.cc" ] 269 sources -= [ "renderer_host/pepper/pepper_truetype_font_list_pango.cc" ]
270 } 270 }
271 } 271 }
272 272
273 if (use_aura && !is_chromeos && is_linux && use_x11) {
274 sources += [
275 "browser/accessibility/accessibility_tree_formatter_auralinux.cc",
276 "browser/accessibility/browser_accessibility_auralinux.cc",
277 "browser/accessibility/browser_accessibility_auralinux.h",
278 "browser/accessibility/browser_accessibility_manager_auralinux.cc",
279 "browser/accessibility/browser_accessibility_manager_auralinux.h",
280 ]
281
282 configs += [
283 "//build/config/linux:atk",
284 "//build/config/linux:atk_warnings",
285 "//build/config/linux:gconf",
286 "//build/config/linux:glib",
287 ]
288 }
289
273 if (is_linux && use_aura) { 290 if (is_linux && use_aura) {
274 configs += [ "//build/config/linux:fontconfig" ] 291 configs += [ "//build/config/linux:fontconfig" ]
275 } 292 }
276 293
277 if (use_x11) { 294 if (use_x11) {
278 configs += [ "//build/config/linux:x11" ] 295 configs += [ "//build/config/linux:x11" ]
279 deps += [ "//ui/gfx/x" ] 296 deps += [ "//ui/gfx/x" ]
280 } 297 }
281 298
282 # Dealing with power_save_blocker_{x11,ozone}.cc is a little complicated 299 # Dealing with power_save_blocker_{x11,ozone}.cc is a little complicated
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 } 475 }
459 476
460 if (is_linux && use_openssl) { 477 if (is_linux && use_openssl) {
461 deps += [ "//third_party/boringssl" ] 478 deps += [ "//third_party/boringssl" ]
462 } 479 }
463 480
464 if (enable_media_mojo_renderer) { 481 if (enable_media_mojo_renderer) {
465 deps += [ "//media/mojo/services:renderer_service" ] 482 deps += [ "//media/mojo/services:renderer_service" ]
466 } 483 }
467 } 484 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698