| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//content/browser/browser.gni") | 7 import("//content/browser/browser.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 | 9 |
| 10 source_set("browser") { | 10 source_set("browser") { |
| (...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 sources -= [ | 467 sources -= [ |
| 468 "compositor/browser_compositor_overlay_candidate_validator_ozone.cc", | 468 "compositor/browser_compositor_overlay_candidate_validator_ozone.cc", |
| 469 "compositor/browser_compositor_overlay_candidate_validator_ozone.h", | 469 "compositor/browser_compositor_overlay_candidate_validator_ozone.h", |
| 470 "compositor/software_output_device_ozone.cc", | 470 "compositor/software_output_device_ozone.cc", |
| 471 "compositor/software_output_device_ozone.h", | 471 "compositor/software_output_device_ozone.h", |
| 472 ] | 472 ] |
| 473 } | 473 } |
| 474 deps += [ "//ui/compositor" ] | 474 deps += [ "//ui/compositor" ] |
| 475 } | 475 } |
| 476 | 476 |
| 477 if (enable_vulkan) { |
| 478 sources += [ |
| 479 "compositor/vulkan_browser_compositor_output_surface.cc", |
| 480 "compositor/vulkan_browser_compositor_output_surface.h", |
| 481 ] |
| 482 } |
| 483 |
| 477 if (enable_web_speech) { | 484 if (enable_web_speech) { |
| 478 deps += [ "//third_party/flac" ] | 485 deps += [ "//third_party/flac" ] |
| 479 } | 486 } |
| 480 | 487 |
| 481 if (is_linux && use_dbus) { | 488 if (is_linux && use_dbus) { |
| 482 deps += [ "//dbus" ] | 489 deps += [ "//dbus" ] |
| 483 } | 490 } |
| 484 | 491 |
| 485 if (enable_browser_cdms) { | 492 if (enable_browser_cdms) { |
| 486 sources += [ | 493 sources += [ |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 519 | 526 |
| 520 # See comment at the top of //content/BUILD.gn for how this works. | 527 # See comment at the top of //content/BUILD.gn for how this works. |
| 521 group("for_content_tests") { | 528 group("for_content_tests") { |
| 522 visibility = [ "//content/test/*" ] | 529 visibility = [ "//content/test/*" ] |
| 523 if (!is_component_build) { | 530 if (!is_component_build) { |
| 524 public_deps = [ | 531 public_deps = [ |
| 525 ":browser", | 532 ":browser", |
| 526 ] | 533 ] |
| 527 } | 534 } |
| 528 } | 535 } |
| OLD | NEW |