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