| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 source_set("codec") { | 5 source_set("codec") { |
| 6 deps = [ | 6 deps = [ |
| 7 ":decoder", | 7 ":decoder", |
| 8 ":encoder", | 8 ":encoder", |
| 9 ] | 9 ] |
| 10 } | 10 } |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 deps = [ | 31 deps = [ |
| 32 ":vpx_codec", | 32 ":vpx_codec", |
| 33 "//base/third_party/dynamic_annotations", | 33 "//base/third_party/dynamic_annotations", |
| 34 "//media", | 34 "//media", |
| 35 "//media:shared_memory_support", | 35 "//media:shared_memory_support", |
| 36 "//remoting/proto", | 36 "//remoting/proto", |
| 37 "//third_party/libvpx", | 37 "//third_party/libvpx", |
| 38 "//third_party/libyuv", | 38 "//third_party/libyuv", |
| 39 "//third_party/opus", | 39 "//third_party/opus", |
| 40 "//third_party/webrtc/modules/desktop_capture:primitives", | 40 "//third_party/webrtc/modules/desktop_capture:primitives", |
| 41 "//ui/gfx:color_space", |
| 41 ] | 42 ] |
| 42 | 43 |
| 43 if (is_nacl) { | 44 if (is_nacl) { |
| 44 sources -= [ | 45 sources -= [ |
| 45 "audio_encoder.h", | 46 "audio_encoder.h", |
| 46 "audio_encoder_opus.cc", | 47 "audio_encoder_opus.cc", |
| 47 "audio_encoder_opus.h", | 48 "audio_encoder_opus.h", |
| 48 "video_encoder.cc", | 49 "video_encoder.cc", |
| 49 "video_encoder.h", | 50 "video_encoder.h", |
| 50 "video_encoder_helper.cc", | 51 "video_encoder_helper.cc", |
| 51 "video_encoder_helper.h", | 52 "video_encoder_helper.h", |
| 52 "video_encoder_verbatim.cc", | 53 "video_encoder_verbatim.cc", |
| 53 "video_encoder_verbatim.h", | 54 "video_encoder_verbatim.h", |
| 54 "video_encoder_vpx.cc", | 55 "video_encoder_vpx.cc", |
| 55 "video_encoder_vpx.h", | 56 "video_encoder_vpx.h", |
| 56 "webrtc_video_encoder_vpx.cc", | 57 "webrtc_video_encoder_vpx.cc", |
| 57 "webrtc_video_encoder_vpx.h", | 58 "webrtc_video_encoder_vpx.h", |
| 58 ] | 59 ] |
| 59 deps -= [ | 60 deps -= [ |
| 60 "//media", | 61 "//media", |
| 61 "//media:shared_memory_support", | 62 "//media:shared_memory_support", |
| 63 "//ui/gfx:color_space", |
| 62 ] | 64 ] |
| 63 } | 65 } |
| 64 | 66 |
| 65 # Opus depends on //media, which is not a supported include for iOS. | 67 # Opus depends on //media, which is not a supported include for iOS. |
| 66 # Removing Opus for iOS builds. | 68 # Removing Opus for iOS builds. |
| 67 if (is_ios) { | 69 if (is_ios) { |
| 68 sources -= [ | 70 sources -= [ |
| 69 "audio_encoder_opus.cc", | 71 "audio_encoder_opus.cc", |
| 70 "audio_encoder_opus.h", | 72 "audio_encoder_opus.h", |
| 71 ] | 73 ] |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 "video_encoder_verbatim_unittest.cc", | 136 "video_encoder_verbatim_unittest.cc", |
| 135 "video_encoder_vpx_unittest.cc", | 137 "video_encoder_vpx_unittest.cc", |
| 136 ] | 138 ] |
| 137 | 139 |
| 138 deps = [ | 140 deps = [ |
| 139 ":codec", | 141 ":codec", |
| 140 "//base", | 142 "//base", |
| 141 "//remoting/proto", | 143 "//remoting/proto", |
| 142 "//testing/gtest", | 144 "//testing/gtest", |
| 143 "//third_party/webrtc/modules/desktop_capture", | 145 "//third_party/webrtc/modules/desktop_capture", |
| 146 "//ui/gfx:color_space", |
| 144 ] | 147 ] |
| 145 | 148 |
| 146 if (is_ios) { | 149 if (is_ios) { |
| 147 sources -= [ "audio_encoder_opus_unittest.cc" ] | 150 sources -= [ "audio_encoder_opus_unittest.cc" ] |
| 148 } | 151 } |
| 149 } | 152 } |
| OLD | NEW |