| OLD | NEW |
| 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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 "//ppapi/shared_impl", | 275 "//ppapi/shared_impl", |
| 276 ] | 276 ] |
| 277 if (!use_ozone || use_pango) { | 277 if (!use_ozone || use_pango) { |
| 278 sources -= [ "renderer_host/pepper/pepper_truetype_font_list_ozone.cc" ] | 278 sources -= [ "renderer_host/pepper/pepper_truetype_font_list_ozone.cc" ] |
| 279 } | 279 } |
| 280 if (!use_pango) { | 280 if (!use_pango) { |
| 281 sources -= [ "renderer_host/pepper/pepper_truetype_font_list_pango.cc" ] | 281 sources -= [ "renderer_host/pepper/pepper_truetype_font_list_pango.cc" ] |
| 282 } | 282 } |
| 283 } | 283 } |
| 284 | 284 |
| 285 if (use_atk) { |
| 286 sources += |
| 287 rebase_path(content_browser_gypi_values.auralinux_browser_sources, |
| 288 ".", |
| 289 "//content") |
| 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 |
| 285 if (is_linux && use_aura) { | 299 if (is_linux && use_aura) { |
| 286 configs += [ "//build/config/linux:fontconfig" ] | 300 configs += [ "//build/config/linux:fontconfig" ] |
| 287 } | 301 } |
| 288 | 302 |
| 289 if (use_x11) { | 303 if (use_x11) { |
| 290 configs += [ "//build/config/linux:x11" ] | 304 configs += [ "//build/config/linux:x11" ] |
| 291 deps += [ "//ui/gfx/x" ] | 305 deps += [ "//ui/gfx/x" ] |
| 292 } | 306 } |
| 293 | 307 |
| 294 # 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 Loading... |
| 487 if (enable_webvr) { | 501 if (enable_webvr) { |
| 488 sources += [ | 502 sources += [ |
| 489 "vr/vr_device.cc", | 503 "vr/vr_device.cc", |
| 490 "vr/vr_device.h", | 504 "vr/vr_device.h", |
| 491 "vr/vr_device_manager.cc", | 505 "vr/vr_device_manager.cc", |
| 492 "vr/vr_device_manager.h", | 506 "vr/vr_device_manager.h", |
| 493 "vr/vr_device_provider.h", | 507 "vr/vr_device_provider.h", |
| 494 ] | 508 ] |
| 495 } | 509 } |
| 496 } | 510 } |
| OLD | NEW |