| 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 "video_encoder_vpx_unittest.cc", | 135 "video_encoder_vpx_unittest.cc", |
| 136 ] | 136 ] |
| 137 | 137 |
| 138 deps = [ | 138 deps = [ |
| 139 ":codec", | 139 ":codec", |
| 140 "//base", | 140 "//base", |
| 141 "//remoting/proto", | 141 "//remoting/proto", |
| 142 "//testing/gtest", | 142 "//testing/gtest", |
| 143 "//third_party/webrtc/modules/desktop_capture", | 143 "//third_party/webrtc/modules/desktop_capture", |
| 144 ] | 144 ] |
| 145 |
| 146 if (is_ios) { |
| 147 sources -= [ "audio_encoder_opus_unittest.cc" ] |
| 148 } |
| 145 } | 149 } |
| OLD | NEW |