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

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

Issue 1478643002: Refactor media out of WebContentsImpl to MediaWebContentsObserver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove cruft. Created 5 years 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 497 matching lines...) Expand 10 before | Expand all | Expand 10 after
508 } 508 }
509 509
510 if (is_linux && use_dbus) { 510 if (is_linux && use_dbus) {
511 deps += [ "//dbus" ] 511 deps += [ "//dbus" ]
512 } 512 }
513 513
514 if (enable_browser_cdms) { 514 if (enable_browser_cdms) {
515 sources += [ 515 sources += [
516 "media/cdm/browser_cdm_manager.cc", 516 "media/cdm/browser_cdm_manager.cc",
517 "media/cdm/browser_cdm_manager.h", 517 "media/cdm/browser_cdm_manager.h",
518 "media/media_web_contents_observer.cc",
519 "media/media_web_contents_observer.h",
520 ] 518 ]
521 } 519 }
522 520
523 if (is_linux) { 521 if (is_linux) {
524 deps += [ "//third_party/boringssl" ] 522 deps += [ "//third_party/boringssl" ]
525 } 523 }
526 524
527 if (enable_mojo_media != "none") { 525 if (enable_mojo_media != "none") {
528 configs += [ "//media/mojo/services:enable_mojo_media_config" ] 526 configs += [ "//media/mojo/services:enable_mojo_media_config" ]
529 } 527 }
(...skipping 14 matching lines...) Expand all
544 542
545 if (enable_webvr && is_android) { 543 if (enable_webvr && is_android) {
546 sources += [ 544 sources += [
547 "vr/android/cardboard/cardboard_vr_device.cc", 545 "vr/android/cardboard/cardboard_vr_device.cc",
548 "vr/android/cardboard/cardboard_vr_device.h", 546 "vr/android/cardboard/cardboard_vr_device.h",
549 "vr/android/cardboard/cardboard_vr_device_provider.cc", 547 "vr/android/cardboard/cardboard_vr_device_provider.cc",
550 "vr/android/cardboard/cardboard_vr_device_provider.h", 548 "vr/android/cardboard/cardboard_vr_device_provider.h",
551 ] 549 ]
552 } 550 }
553 } 551 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698