| 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 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 sources -= [ | 470 sources -= [ |
| 471 "compositor/browser_compositor_overlay_candidate_validator_ozone.cc", | 471 "compositor/browser_compositor_overlay_candidate_validator_ozone.cc", |
| 472 "compositor/browser_compositor_overlay_candidate_validator_ozone.h", | 472 "compositor/browser_compositor_overlay_candidate_validator_ozone.h", |
| 473 "compositor/software_output_device_ozone.cc", | 473 "compositor/software_output_device_ozone.cc", |
| 474 "compositor/software_output_device_ozone.h", | 474 "compositor/software_output_device_ozone.h", |
| 475 ] | 475 ] |
| 476 } | 476 } |
| 477 deps += [ "//ui/compositor" ] | 477 deps += [ "//ui/compositor" ] |
| 478 } | 478 } |
| 479 | 479 |
| 480 if (enable_vulkan) { |
| 481 sources += [ |
| 482 "compositor/vulkan_browser_compositor_output_surface.cc", |
| 483 "compositor/vulkan_browser_compositor_output_surface.h", |
| 484 ] |
| 485 } |
| 486 |
| 480 if (enable_web_speech) { | 487 if (enable_web_speech) { |
| 481 deps += [ "//third_party/flac" ] | 488 deps += [ "//third_party/flac" ] |
| 482 } | 489 } |
| 483 | 490 |
| 484 if (is_linux && use_dbus) { | 491 if (is_linux && use_dbus) { |
| 485 deps += [ "//dbus" ] | 492 deps += [ "//dbus" ] |
| 486 } | 493 } |
| 487 | 494 |
| 488 if (enable_browser_cdms) { | 495 if (enable_browser_cdms) { |
| 489 sources += [ | 496 sources += [ |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 | 533 |
| 527 # See comment at the top of //content/BUILD.gn for how this works. | 534 # See comment at the top of //content/BUILD.gn for how this works. |
| 528 group("for_content_tests") { | 535 group("for_content_tests") { |
| 529 visibility = [ "//content/test/*" ] | 536 visibility = [ "//content/test/*" ] |
| 530 if (!is_component_build) { | 537 if (!is_component_build) { |
| 531 public_deps = [ | 538 public_deps = [ |
| 532 ":browser", | 539 ":browser", |
| 533 ] | 540 ] |
| 534 } | 541 } |
| 535 } | 542 } |
| OLD | NEW |