OLD | NEW |
1 # Copyright 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright 2016 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 import("../webrtc.gni") | 9 import("../webrtc.gni") |
10 if (is_ios) { | 10 if (is_ios) { |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 "CoreMedia.framework", | 176 "CoreMedia.framework", |
177 "CoreVideo.framework", | 177 "CoreVideo.framework", |
178 "OpenGL.framework", | 178 "OpenGL.framework", |
179 ] | 179 ] |
180 } | 180 } |
181 | 181 |
182 deps = [ | 182 deps = [ |
183 ":common_objc", | 183 ":common_objc", |
184 ":videotracksource_objc", | 184 ":videotracksource_objc", |
185 "../api:libjingle_peerconnection_api", | 185 "../api:libjingle_peerconnection_api", |
| 186 "../api:optional", |
186 "../common_video", | 187 "../common_video", |
187 "../media:rtc_media_base", | 188 "../media:rtc_media_base", |
188 "../rtc_base:rtc_base", | 189 "../rtc_base:rtc_base", |
189 ] | 190 ] |
190 | 191 |
191 configs += [ "..:common_objc" ] | 192 configs += [ "..:common_objc" ] |
192 if (!build_with_chromium && is_clang) { | 193 if (!build_with_chromium && is_clang) { |
193 # Suppress warnings from the Chromium Clang plugin | 194 # Suppress warnings from the Chromium Clang plugin |
194 # (bugs.webrtc.org/163). | 195 # (bugs.webrtc.org/163). |
195 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 196 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
768 public_deps = [ | 769 public_deps = [ |
769 "$rtc_libyuv_dir", | 770 "$rtc_libyuv_dir", |
770 ] | 771 ] |
771 } else { | 772 } else { |
772 # Need to add a directory normally exported by libyuv. | 773 # Need to add a directory normally exported by libyuv. |
773 include_dirs = [ "$rtc_libyuv_dir/include" ] | 774 include_dirs = [ "$rtc_libyuv_dir/include" ] |
774 } | 775 } |
775 } | 776 } |
776 } | 777 } |
777 } | 778 } |
OLD | NEW |