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

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

Issue 2839963005: Revert of Creating webrtc/modules:module_api (Closed)
Patch Set: Created 3 years, 7 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 | « webrtc/modules/video_processing/BUILD.gn ('k') | webrtc/tools/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
427 "../modules/video_coding:video_coding_utility", 426 "../modules/video_coding:video_coding_utility",
428 "../modules/video_coding:webrtc_h264", 427 "../modules/video_coding:webrtc_h264",
429 "../system_wrappers", 428 "../system_wrappers",
430 ] 429 ]
431 430
432 libs = [ 431 libs = [
433 "CoreFoundation.framework", 432 "CoreFoundation.framework",
434 "CoreMedia.framework", 433 "CoreMedia.framework",
435 "CoreVideo.framework", 434 "CoreVideo.framework",
436 "VideoToolbox.framework", 435 "VideoToolbox.framework",
437 ] 436 ]
438 437
439 if (!build_with_chromium && is_clang) { 438 if (!build_with_chromium && is_clang) {
440 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 439 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
441 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 440 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
442 } 441 }
443 442
444 if (rtc_build_libyuv) { 443 if (rtc_build_libyuv) {
445 deps += [ "$rtc_libyuv_dir" ] 444 deps += [ "$rtc_libyuv_dir" ]
446 public_deps = [ 445 public_deps = [
447 "$rtc_libyuv_dir", 446 "$rtc_libyuv_dir",
448 ] 447 ]
449 } else { 448 } else {
450 # Need to add a directory normally exported by libyuv. 449 # Need to add a directory normally exported by libyuv.
451 include_dirs = [ "$rtc_libyuv_dir/include" ] 450 include_dirs = [ "$rtc_libyuv_dir/include" ]
452 } 451 }
453 } 452 }
454 } 453 }
OLDNEW
« no previous file with comments | « webrtc/modules/video_processing/BUILD.gn ('k') | webrtc/tools/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698