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/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 3621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3632 "local_discovery/service_discovery_client_impl.cc", | 3632 "local_discovery/service_discovery_client_impl.cc", |
3633 "local_discovery/service_discovery_client_impl.h", | 3633 "local_discovery/service_discovery_client_impl.h", |
3634 "local_discovery/service_discovery_client_mdns.cc", | 3634 "local_discovery/service_discovery_client_mdns.cc", |
3635 "local_discovery/service_discovery_client_mdns.h", | 3635 "local_discovery/service_discovery_client_mdns.h", |
3636 "printing/cloud_print/privet_traffic_detector.cc", | 3636 "printing/cloud_print/privet_traffic_detector.cc", |
3637 "printing/cloud_print/privet_traffic_detector.h", | 3637 "printing/cloud_print/privet_traffic_detector.h", |
3638 ] | 3638 ] |
3639 } | 3639 } |
3640 | 3640 |
3641 if (enable_media_router) { | 3641 if (enable_media_router) { |
3642 deps += [ "//chrome/browser/media/router" ] | 3642 deps += [ |
| 3643 "//chrome/browser/media/router", |
| 3644 "//media/cast:net", |
| 3645 "//media/mojo/interfaces:remoting", |
| 3646 ] |
| 3647 sources += [ |
| 3648 "media/cast_remoting_connector.cc", |
| 3649 "media/cast_remoting_connector.h", |
| 3650 "media/cast_remoting_sender.cc", |
| 3651 "media/cast_remoting_sender.h", |
| 3652 ] |
3643 } | 3653 } |
3644 | 3654 |
3645 if (enable_mojo_media) { | 3655 if (enable_mojo_media) { |
3646 configs += [ "//media/mojo/services:mojo_media_config" ] | 3656 configs += [ "//media/mojo/services:mojo_media_config" ] |
3647 sources += [ | 3657 sources += [ |
3648 "media/output_protection_impl.cc", | 3658 "media/output_protection_impl.cc", |
3649 "media/output_protection_impl.h", | 3659 "media/output_protection_impl.h", |
3650 ] | 3660 ] |
3651 deps += [ "//media/mojo/interfaces" ] | 3661 deps += [ "//media/mojo/interfaces" ] |
3652 if (mojo_media_host == "browser") { | 3662 if (mojo_media_host == "browser") { |
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4226 # linking all of the test support. | 4236 # linking all of the test support. |
4227 static_library("pepper_cdm_test_constants") { | 4237 static_library("pepper_cdm_test_constants") { |
4228 testonly = true | 4238 testonly = true |
4229 visibility = [ "//chrome/*" ] | 4239 visibility = [ "//chrome/*" ] |
4230 sources = [ | 4240 sources = [ |
4231 "media/pepper_cdm_test_constants.cc", | 4241 "media/pepper_cdm_test_constants.cc", |
4232 "media/pepper_cdm_test_constants.h", | 4242 "media/pepper_cdm_test_constants.h", |
4233 ] | 4243 ] |
4234 } | 4244 } |
4235 } | 4245 } |
OLD | NEW |