| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 | 6 |
| 7 # See //content/BUILD.gn for how this works. | 7 # See //content/BUILD.gn for how this works. |
| 8 group("renderer") { | 8 group("renderer") { |
| 9 if (is_component_build) { | 9 if (is_component_build) { |
| 10 public_deps = [ | 10 public_deps = [ |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 "media_stream_utils.cc", | 101 "media_stream_utils.cc", |
| 102 "media_stream_utils.h", | 102 "media_stream_utils.h", |
| 103 "media_stream_video_renderer.h", | 103 "media_stream_video_renderer.h", |
| 104 "media_stream_video_sink.cc", | 104 "media_stream_video_sink.cc", |
| 105 "media_stream_video_sink.h", | 105 "media_stream_video_sink.h", |
| 106 "webrtc_log_message_delegate.h", | 106 "webrtc_log_message_delegate.h", |
| 107 ] | 107 ] |
| 108 deps += [ | 108 deps += [ |
| 109 "//content/public/common:feature_h264_with_openh264_ffmpeg", | 109 "//content/public/common:feature_h264_with_openh264_ffmpeg", |
| 110 "//content/public/common:features", | 110 "//content/public/common:features", |
| 111 "//third_party/webrtc", | |
| 112 ] | 111 ] |
| 113 } | 112 } |
| 114 | 113 |
| 115 if (enable_plugins) { | 114 if (enable_plugins) { |
| 116 sources += [ "plugin_instance_throttler.h" ] | 115 sources += [ "plugin_instance_throttler.h" ] |
| 117 } | 116 } |
| 118 } | 117 } |
| OLD | NEW |