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

Side by Side Diff: content/browser/BUILD.gn

Issue 1248713002: ozone: ClientPixmapManager passes VGEM fd from browser to renderer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rename to ClientNativePixmapFactory Created 5 years, 4 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 441 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 "compositor/software_output_device_x11.h", 452 "compositor/software_output_device_x11.h",
453 ] 453 ]
454 } 454 }
455 455
456 if (!use_ozone) { 456 if (!use_ozone) {
457 sources -= [ 457 sources -= [
458 "compositor/browser_compositor_overlay_candidate_validator_ozone.cc", 458 "compositor/browser_compositor_overlay_candidate_validator_ozone.cc",
459 "compositor/browser_compositor_overlay_candidate_validator_ozone.h", 459 "compositor/browser_compositor_overlay_candidate_validator_ozone.h",
460 "compositor/software_output_device_ozone.cc", 460 "compositor/software_output_device_ozone.cc",
461 "compositor/software_output_device_ozone.h", 461 "compositor/software_output_device_ozone.h",
462 "gpu/browser_client_native_pixmap_factory_ozone.cc",
463 "gpu/browser_client_native_pixmap_factory_ozone.h",
462 ] 464 ]
463 } 465 }
464 deps += [ "//ui/compositor" ] 466 deps += [ "//ui/compositor" ]
465 } 467 }
466 468
467 if (!is_ios) { 469 if (!is_ios) {
468 sources += [ 470 sources += [
469 "compositor/surface_utils.cc", 471 "compositor/surface_utils.cc",
470 "compositor/surface_utils.h", 472 "compositor/surface_utils.h",
471 ] 473 ]
(...skipping 27 matching lines...) Expand all
499 if (enable_webvr) { 501 if (enable_webvr) {
500 sources += [ 502 sources += [
501 "vr/vr_device.cc", 503 "vr/vr_device.cc",
502 "vr/vr_device.h", 504 "vr/vr_device.h",
503 "vr/vr_device_manager.cc", 505 "vr/vr_device_manager.cc",
504 "vr/vr_device_manager.h", 506 "vr/vr_device_manager.h",
505 "vr/vr_device_provider.h", 507 "vr/vr_device_provider.h",
506 ] 508 ]
507 } 509 }
508 } 510 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698