Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1153)

Side by Side Diff: webrtc/modules/video_coding/BUILD.gn

Issue 2375603002: GN: Fix incorrect include_dir for video_coding on iOS (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 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("../../build/webrtc.gni") 9 import("../../build/webrtc.gni")
10 10
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 211 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
212 } 212 }
213 213
214 if (rtc_build_libyuv) { 214 if (rtc_build_libyuv) {
215 deps += [ "$rtc_libyuv_dir" ] 215 deps += [ "$rtc_libyuv_dir" ]
216 public_deps = [ 216 public_deps = [
217 "$rtc_libyuv_dir", 217 "$rtc_libyuv_dir",
218 ] 218 ]
219 } else { 219 } else {
220 # Need to add a directory normally exported by libyuv. 220 # Need to add a directory normally exported by libyuv.
221 include_dirs += [ "$rtc_libyuv_dir/include" ] 221 include_dirs = [ "$rtc_libyuv_dir/include" ]
222 } 222 }
223 } 223 }
224 } 224 }
225 225
226 rtc_static_library("webrtc_i420") { 226 rtc_static_library("webrtc_i420") {
227 sources = [ 227 sources = [
228 "codecs/i420/i420.cc", 228 "codecs/i420/i420.cc",
229 "codecs/i420/include/i420.h", 229 "codecs/i420/include/i420.h",
230 ] 230 ]
231 231
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 # Suppress warnings from Chrome's Clang plugins. 324 # Suppress warnings from Chrome's Clang plugins.
325 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 325 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
326 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 326 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
327 } 327 }
328 328
329 deps = [ 329 deps = [
330 "../../test:test_support", 330 "../../test:test_support",
331 ] 331 ]
332 } 332 }
333 } 333 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698