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

Side by Side Diff: webrtc/sdk/BUILD.gn

Issue 2838873002: Creating webrtc/modules:module_api (Closed)
Patch Set: fixing gn coding standards Created 3 years, 8 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
OLDNEW
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 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 ] 416 ]
417 417
418 configs += [ "//webrtc:common_objc" ] 418 configs += [ "//webrtc:common_objc" ]
419 419
420 deps = [ 420 deps = [
421 ":rtc_sdk_common_objc", 421 ":rtc_sdk_common_objc",
422 "../api:video_frame_api", 422 "../api:video_frame_api",
423 "../base:rtc_base_approved", 423 "../base:rtc_base_approved",
424 "../common_video", 424 "../common_video",
425 "../media:rtc_media_base", 425 "../media:rtc_media_base",
426 "../modules:module_api",
426 "../modules/video_coding:video_coding_utility", 427 "../modules/video_coding:video_coding_utility",
427 "../modules/video_coding:webrtc_h264", 428 "../modules/video_coding:webrtc_h264",
428 "../system_wrappers", 429 "../system_wrappers",
429 ] 430 ]
430 431
431 libs = [ 432 libs = [
432 "CoreFoundation.framework", 433 "CoreFoundation.framework",
433 "CoreMedia.framework", 434 "CoreMedia.framework",
434 "CoreVideo.framework", 435 "CoreVideo.framework",
435 "VideoToolbox.framework", 436 "VideoToolbox.framework",
436 ] 437 ]
437 438
438 if (!build_with_chromium && is_clang) { 439 if (!build_with_chromium && is_clang) {
439 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 440 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
440 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 441 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
441 } 442 }
442 443
443 if (rtc_build_libyuv) { 444 if (rtc_build_libyuv) {
444 deps += [ "$rtc_libyuv_dir" ] 445 deps += [ "$rtc_libyuv_dir" ]
445 public_deps = [ 446 public_deps = [
446 "$rtc_libyuv_dir", 447 "$rtc_libyuv_dir",
447 ] 448 ]
448 } else { 449 } else {
449 # Need to add a directory normally exported by libyuv. 450 # Need to add a directory normally exported by libyuv.
450 include_dirs = [ "$rtc_libyuv_dir/include" ] 451 include_dirs = [ "$rtc_libyuv_dir/include" ]
451 } 452 }
452 } 453 }
453 } 454 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698