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