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

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_atk) {
283 sources +=
284 rebase_path(content_browser_gypi_values.auralinux_browser_sources,
285 ".",
286 "//content")
287
288 configs += [
289 "//build/config/linux:atk",
290 "//build/config/linux:atk_warnings",
291 "//build/config/linux:gconf",
292 "//build/config/linux:glib",
293 ]
294 }
295
282 if (is_linux && use_aura) { 296 if (is_linux && use_aura) {
283 configs += [ "//build/config/linux:fontconfig" ] 297 configs += [ "//build/config/linux:fontconfig" ]
284 } 298 }
285 299
286 if (use_x11) { 300 if (use_x11) {
287 configs += [ "//build/config/linux:x11" ] 301 configs += [ "//build/config/linux:x11" ]
288 deps += [ "//ui/gfx/x" ] 302 deps += [ "//ui/gfx/x" ]
289 } 303 }
290 304
291 # Dealing with power_save_blocker_{x11,ozone}.cc is a little complicated 305 # 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) { 498 if (enable_webvr) {
485 sources += [ 499 sources += [
486 "vr/vr_device.cc", 500 "vr/vr_device.cc",
487 "vr/vr_device.h", 501 "vr/vr_device.h",
488 "vr/vr_device_manager.cc", 502 "vr/vr_device_manager.cc",
489 "vr/vr_device_manager.h", 503 "vr/vr_device_manager.h",
490 "vr/vr_device_provider.h", 504 "vr/vr_device_provider.h",
491 ] 505 ]
492 } 506 }
493 } 507 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698