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

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

Powered by Google App Engine
This is Rietveld 408576698