| 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 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 } | 460 } |
| 461 if (!use_x11) { | 461 if (!use_x11) { |
| 462 sources -= [ | 462 sources -= [ |
| 463 "compositor/software_output_device_x11.cc", | 463 "compositor/software_output_device_x11.cc", |
| 464 "compositor/software_output_device_x11.h", | 464 "compositor/software_output_device_x11.h", |
| 465 ] | 465 ] |
| 466 } | 466 } |
| 467 | 467 |
| 468 if (!use_ozone) { | 468 if (!use_ozone) { |
| 469 sources -= [ | 469 sources -= [ |
| 470 "compositor/browser_compositor_overlay_candidate_validator_ozone.cc", | |
| 471 "compositor/browser_compositor_overlay_candidate_validator_ozone.h", | |
| 472 "compositor/software_output_device_ozone.cc", | 470 "compositor/software_output_device_ozone.cc", |
| 473 "compositor/software_output_device_ozone.h", | 471 "compositor/software_output_device_ozone.h", |
| 474 ] | 472 ] |
| 475 } | 473 } |
| 476 deps += [ "//ui/compositor" ] | 474 deps += [ "//ui/compositor" ] |
| 477 } | 475 } |
| 478 | 476 |
| 479 if (enable_web_speech) { | 477 if (enable_web_speech) { |
| 480 deps += [ "//third_party/flac" ] | 478 deps += [ "//third_party/flac" ] |
| 481 } | 479 } |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 532 | 530 |
| 533 # See comment at the top of //content/BUILD.gn for how this works. | 531 # See comment at the top of //content/BUILD.gn for how this works. |
| 534 group("for_content_tests") { | 532 group("for_content_tests") { |
| 535 visibility = [ "//content/test/*" ] | 533 visibility = [ "//content/test/*" ] |
| 536 if (!is_component_build) { | 534 if (!is_component_build) { |
| 537 public_deps = [ | 535 public_deps = [ |
| 538 ":browser", | 536 ":browser", |
| 539 ] | 537 ] |
| 540 } | 538 } |
| 541 } | 539 } |
| OLD | NEW |