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 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
451 "compositor/software_output_device_x11.h", | 451 "compositor/software_output_device_x11.h", |
452 ] | 452 ] |
453 } | 453 } |
454 | 454 |
455 if (!use_ozone) { | 455 if (!use_ozone) { |
456 sources -= [ | 456 sources -= [ |
457 "compositor/browser_compositor_overlay_candidate_validator_ozone.cc", | 457 "compositor/browser_compositor_overlay_candidate_validator_ozone.cc", |
458 "compositor/browser_compositor_overlay_candidate_validator_ozone.h", | 458 "compositor/browser_compositor_overlay_candidate_validator_ozone.h", |
459 "compositor/software_output_device_ozone.cc", | 459 "compositor/software_output_device_ozone.cc", |
460 "compositor/software_output_device_ozone.h", | 460 "compositor/software_output_device_ozone.h", |
| 461 "gpu/browser_native_pixmap_manager_ozone.cc", |
| 462 "gpu/browser_native_pixmap_manager_ozone.h", |
461 ] | 463 ] |
462 } | 464 } |
463 deps += [ "//ui/compositor" ] | 465 deps += [ "//ui/compositor" ] |
464 } | 466 } |
465 | 467 |
466 if (!is_ios) { | 468 if (!is_ios) { |
467 sources += [ | 469 sources += [ |
468 "compositor/surface_utils.cc", | 470 "compositor/surface_utils.cc", |
469 "compositor/surface_utils.h", | 471 "compositor/surface_utils.h", |
470 ] | 472 ] |
(...skipping 30 matching lines...) Expand all Loading... |
501 if (enable_webvr) { | 503 if (enable_webvr) { |
502 sources += [ | 504 sources += [ |
503 "vr/vr_device.cc", | 505 "vr/vr_device.cc", |
504 "vr/vr_device.h", | 506 "vr/vr_device.h", |
505 "vr/vr_device_manager.cc", | 507 "vr/vr_device_manager.cc", |
506 "vr/vr_device_manager.h", | 508 "vr/vr_device_manager.h", |
507 "vr/vr_device_provider.h", | 509 "vr/vr_device_provider.h", |
508 ] | 510 ] |
509 } | 511 } |
510 } | 512 } |
OLD | NEW |