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

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: 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
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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 "//ppapi/shared_impl", 272 "//ppapi/shared_impl",
273 ] 273 ]
274 if (!use_ozone || use_pango) { 274 if (!use_ozone || use_pango) {
275 sources -= [ "renderer_host/pepper/pepper_truetype_font_list_ozone.cc" ] 275 sources -= [ "renderer_host/pepper/pepper_truetype_font_list_ozone.cc" ]
276 } 276 }
277 if (!use_pango) { 277 if (!use_pango) {
278 sources -= [ "renderer_host/pepper/pepper_truetype_font_list_pango.cc" ] 278 sources -= [ "renderer_host/pepper/pepper_truetype_font_list_pango.cc" ]
279 } 279 }
280 } 280 }
281 281
282 if (use_aura && !is_chromeos && is_linux && use_x11) {
283 sources += [
284 "accessibility/accessibility_tree_formatter_auralinux.cc",
285 "accessibility/browser_accessibility_auralinux.cc",
286 "accessibility/browser_accessibility_auralinux.h",
287 "accessibility/browser_accessibility_manager_auralinux.cc",
288 "accessibility/browser_accessibility_manager_auralinux.h",
289 ]
290
291 configs += [
292 "//build/config/linux:atk",
293 "//build/config/linux:atk_warnings",
294 "//build/config/linux:gconf",
295 "//build/config/linux:glib",
296 ]
297 }
298
282 if (is_linux && use_aura) { 299 if (is_linux && use_aura) {
283 configs += [ "//build/config/linux:fontconfig" ] 300 configs += [ "//build/config/linux:fontconfig" ]
284 } 301 }
285 302
286 if (use_x11) { 303 if (use_x11) {
287 configs += [ "//build/config/linux:x11" ] 304 configs += [ "//build/config/linux:x11" ]
288 deps += [ "//ui/gfx/x" ] 305 deps += [ "//ui/gfx/x" ]
289 } 306 }
290 307
291 # Dealing with power_save_blocker_{x11,ozone}.cc is a little complicated 308 # Dealing with power_save_blocker_{x11,ozone}.cc is a little complicated
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
484 if (enable_webvr) { 501 if (enable_webvr) {
485 sources += [ 502 sources += [
486 "vr/vr_device.cc", 503 "vr/vr_device.cc",
487 "vr/vr_device.h", 504 "vr/vr_device.h",
488 "vr/vr_device_manager.cc", 505 "vr/vr_device_manager.cc",
489 "vr/vr_device_manager.h", 506 "vr/vr_device_manager.h",
490 "vr/vr_device_provider.h", 507 "vr/vr_device_provider.h",
491 ] 508 ]
492 } 509 }
493 } 510 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/accessibility/accessibility_tree_formatter.cc » ('j') | content/content_browser.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698