Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(392)

Side by Side Diff: content/browser/BUILD.gn

Issue 1931213002: display_compositor: Move CompositorOverlayCandidateValidator from content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@DONE_2016.04.28_dc-overlay-candidate-validator
Patch Set: . Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698