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

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

Issue 2310753002: Media Remoting: Data/Control plumbing between renderer and Media Router. (Closed)
Patch Set: Created 4 years, 3 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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 3647 matching lines...) Expand 10 before | Expand all | Expand 10 after
3658 "printing/cloud_print/privet_traffic_detector.h", 3658 "printing/cloud_print/privet_traffic_detector.h",
3659 ] 3659 ]
3660 } 3660 }
3661 if (is_android) { 3661 if (is_android) {
3662 sources -= [ 3662 sources -= [
3663 "autofill/validation_rules_storage_factory.cc", 3663 "autofill/validation_rules_storage_factory.cc",
3664 "autofill/validation_rules_storage_factory.h", 3664 "autofill/validation_rules_storage_factory.h",
3665 ] 3665 ]
3666 } 3666 }
3667 if (enable_media_router) { 3667 if (enable_media_router) {
3668 deps += [ "//chrome/browser/media/router" ] 3668 deps += [
3669 "//chrome/browser/media/router",
3670 "//media/cast:net",
3671 "//media/mojo/interfaces:remoting",
3672 ]
3673 sources += [
3674 "media/cast_remoting_connector.cc",
3675 "media/cast_remoting_connector.h",
3676 "media/cast_remoting_sender.cc",
3677 "media/cast_remoting_sender.h",
3678 ]
3669 } 3679 }
3670 3680
3671 if (enable_mojo_media) { 3681 if (enable_mojo_media) {
3672 configs += [ "//media/mojo/services:mojo_media_config" ] 3682 configs += [ "//media/mojo/services:mojo_media_config" ]
3673 sources += [ 3683 sources += [
3674 "media/output_protection_impl.cc", 3684 "media/output_protection_impl.cc",
3675 "media/output_protection_impl.h", 3685 "media/output_protection_impl.h",
3676 ] 3686 ]
3677 deps += [ "//media/mojo/interfaces" ] 3687 deps += [ "//media/mojo/interfaces" ]
3678 if (mojo_media_host == "browser") { 3688 if (mojo_media_host == "browser") {
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after
4252 # linking all of the test support. 4262 # linking all of the test support.
4253 static_library("pepper_cdm_test_constants") { 4263 static_library("pepper_cdm_test_constants") {
4254 testonly = true 4264 testonly = true
4255 visibility = [ "//chrome/*" ] 4265 visibility = [ "//chrome/*" ]
4256 sources = [ 4266 sources = [
4257 "media/pepper_cdm_test_constants.cc", 4267 "media/pepper_cdm_test_constants.cc",
4258 "media/pepper_cdm_test_constants.h", 4268 "media/pepper_cdm_test_constants.h",
4259 ] 4269 ]
4260 } 4270 }
4261 } 4271 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | chrome/browser/media/cast_remoting_connector.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698