| 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/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/split_static_library.gni") | 8 import("//build/split_static_library.gni") |
| 9 import("//content/common/features.gni") | 9 import("//content/common/features.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 752 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 763 | 763 |
| 764 deps += [ | 764 deps += [ |
| 765 "//crypto", | 765 "//crypto", |
| 766 "//third_party/libvpx", | 766 "//third_party/libvpx", |
| 767 "//third_party/opus", | 767 "//third_party/opus", |
| 768 "//third_party/webrtc/api:libjingle_peerconnection", | 768 "//third_party/webrtc/api:libjingle_peerconnection", |
| 769 "//third_party/webrtc/api:rtc_stats_api", | 769 "//third_party/webrtc/api:rtc_stats_api", |
| 770 "//third_party/webrtc/api:video_frame_api", | 770 "//third_party/webrtc/api:video_frame_api", |
| 771 "//third_party/webrtc/api/audio_codecs:builtin_audio_decoder_factory", | 771 "//third_party/webrtc/api/audio_codecs:builtin_audio_decoder_factory", |
| 772 "//third_party/webrtc/api/audio_codecs:builtin_audio_encoder_factory", | 772 "//third_party/webrtc/api/audio_codecs:builtin_audio_encoder_factory", |
| 773 "//third_party/webrtc/common_video:common_video", |
| 773 "//third_party/webrtc/media:rtc_media", | 774 "//third_party/webrtc/media:rtc_media", |
| 774 "//third_party/webrtc/media:rtc_media_base", | 775 "//third_party/webrtc/media:rtc_media_base", |
| 775 "//third_party/webrtc/modules/audio_device", | 776 "//third_party/webrtc/modules/audio_device", |
| 776 "//third_party/webrtc/modules/audio_processing", | 777 "//third_party/webrtc/modules/audio_processing", |
| 777 "//third_party/webrtc/modules/video_coding:webrtc_h264", | 778 "//third_party/webrtc/modules/video_coding:webrtc_h264", |
| 778 "//third_party/webrtc/p2p:libstunprober", | 779 "//third_party/webrtc/p2p:libstunprober", |
| 779 "//third_party/webrtc/p2p:rtc_p2p", | 780 "//third_party/webrtc/p2p:rtc_p2p", |
| 780 "//third_party/webrtc/pc:rtc_pc", | 781 "//third_party/webrtc/pc:rtc_pc", |
| 781 "//third_party/webrtc/rtc_base:rtc_base", | 782 "//third_party/webrtc/rtc_base:rtc_base", |
| 782 "//third_party/webrtc/stats", | 783 "//third_party/webrtc/stats", |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 993 # See comment at the top of //content/BUILD.gn for how this works. | 994 # See comment at the top of //content/BUILD.gn for how this works. |
| 994 group("for_content_tests") { | 995 group("for_content_tests") { |
| 995 visibility = [ "//content/test/*" ] | 996 visibility = [ "//content/test/*" ] |
| 996 | 997 |
| 997 if (!is_component_build) { | 998 if (!is_component_build) { |
| 998 public_deps = [ | 999 public_deps = [ |
| 999 ":renderer", | 1000 ":renderer", |
| 1000 ] | 1001 ] |
| 1001 } | 1002 } |
| 1002 } | 1003 } |
| OLD | NEW |