| 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 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) | 413 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) |
| 414 configs -= [ "//build/config/clang:find_bad_constructs" ] | 414 configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 415 } | 415 } |
| 416 } | 416 } |
| 417 } | 417 } |
| 418 | 418 |
| 419 rtc_static_library("rtc_sdk_objc") { | 419 rtc_static_library("rtc_sdk_objc") { |
| 420 complete_static_lib = true | 420 complete_static_lib = true |
| 421 deps = [ | 421 deps = [ |
| 422 ":rtc_sdk_peerconnection_objc", | 422 ":rtc_sdk_peerconnection_objc", |
| 423 "//webrtc/system_wrappers:field_trial_default", | 423 "../system_wrappers:field_trial_default", |
| 424 "//webrtc/system_wrappers:metrics_default", | 424 "../system_wrappers:metrics_default", |
| 425 ] | 425 ] |
| 426 } | 426 } |
| 427 | 427 |
| 428 rtc_static_library("webrtc_h264_video_toolbox") { | 428 rtc_static_library("webrtc_h264_video_toolbox") { |
| 429 sources = [ | 429 sources = [ |
| 430 "objc/Framework/Classes/h264_video_toolbox_decoder.cc", | 430 "objc/Framework/Classes/h264_video_toolbox_decoder.cc", |
| 431 "objc/Framework/Classes/h264_video_toolbox_decoder.h", | 431 "objc/Framework/Classes/h264_video_toolbox_decoder.h", |
| 432 "objc/Framework/Classes/h264_video_toolbox_encoder.h", | 432 "objc/Framework/Classes/h264_video_toolbox_encoder.h", |
| 433 "objc/Framework/Classes/h264_video_toolbox_encoder.mm", | 433 "objc/Framework/Classes/h264_video_toolbox_encoder.mm", |
| 434 "objc/Framework/Classes/h264_video_toolbox_nalu.cc", | 434 "objc/Framework/Classes/h264_video_toolbox_nalu.cc", |
| 435 "objc/Framework/Classes/h264_video_toolbox_nalu.h", | 435 "objc/Framework/Classes/h264_video_toolbox_nalu.h", |
| 436 ] | 436 ] |
| 437 | 437 |
| 438 configs += [ "//webrtc:common_objc" ] | 438 configs += [ "..:common_objc" ] |
| 439 | 439 |
| 440 deps = [ | 440 deps = [ |
| 441 ":rtc_sdk_common_objc", | 441 ":rtc_sdk_common_objc", |
| 442 "../api:video_frame_api", | 442 "../api:video_frame_api", |
| 443 "../base:rtc_base_approved", | 443 "../base:rtc_base_approved", |
| 444 "../common_video", | 444 "../common_video", |
| 445 "../media:rtc_media_base", | 445 "../media:rtc_media_base", |
| 446 "../modules:module_api", | 446 "../modules:module_api", |
| 447 "../modules/video_coding:video_coding_utility", | 447 "../modules/video_coding:video_coding_utility", |
| 448 "../modules/video_coding:webrtc_h264", | 448 "../modules/video_coding:webrtc_h264", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 465 deps += [ "$rtc_libyuv_dir" ] | 465 deps += [ "$rtc_libyuv_dir" ] |
| 466 public_deps = [ | 466 public_deps = [ |
| 467 "$rtc_libyuv_dir", | 467 "$rtc_libyuv_dir", |
| 468 ] | 468 ] |
| 469 } else { | 469 } else { |
| 470 # Need to add a directory normally exported by libyuv. | 470 # Need to add a directory normally exported by libyuv. |
| 471 include_dirs = [ "$rtc_libyuv_dir/include" ] | 471 include_dirs = [ "$rtc_libyuv_dir/include" ] |
| 472 } | 472 } |
| 473 } | 473 } |
| 474 } | 474 } |
| OLD | NEW |