| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 | 7 |
| 8 # From third_party/libjingle/libjingle.gyp's target_defaults. | 8 # From third_party/libjingle/libjingle.gyp's target_defaults. |
| 9 config("jingle_unexported_configs") { | 9 config("jingle_unexported_configs") { |
| 10 defines = [ | 10 defines = [ |
| (...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 484 "source/talk/session/media/voicechannel.h", | 484 "source/talk/session/media/voicechannel.h", |
| 485 ] | 485 ] |
| 486 | 486 |
| 487 configs -= [ "//build/config/compiler:chromium_code" ] | 487 configs -= [ "//build/config/compiler:chromium_code" ] |
| 488 configs += [ "//build/config/compiler:no_chromium_code" ] | 488 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 489 | 489 |
| 490 configs += [ ":jingle_unexported_configs" ] | 490 configs += [ ":jingle_unexported_configs" ] |
| 491 public_configs = [ ":jingle_public_configs" ] | 491 public_configs = [ ":jingle_public_configs" ] |
| 492 | 492 |
| 493 deps = [ | 493 deps = [ |
| 494 ":libjingle", |
| 494 "//third_party/libsrtp", | 495 "//third_party/libsrtp", |
| 495 "//third_party/webrtc/modules/media_file", | 496 "//third_party/webrtc/modules/media_file", |
| 496 "//third_party/webrtc/modules/video_capture", | 497 "//third_party/webrtc/modules/video_capture", |
| 497 "//third_party/webrtc/modules/video_render", | 498 "//third_party/webrtc/modules/video_render", |
| 498 ] | 499 ] |
| 499 | 500 |
| 500 if (!is_ios) { | 501 if (!is_ios) { |
| 501 # TODO(mallinath) - Enable SCTP for iOS. | 502 # TODO(mallinath) - Enable SCTP for iOS. |
| 502 sources += [ | 503 sources += [ |
| 503 "source/talk/media/sctp/sctpdataengine.cc", | 504 "source/talk/media/sctp/sctpdataengine.cc", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 531 | 532 |
| 532 deps = [ | 533 deps = [ |
| 533 ":libjingle_webrtc_common", | 534 ":libjingle_webrtc_common", |
| 534 "//third_party/webrtc", | 535 "//third_party/webrtc", |
| 535 "//third_party/webrtc/system_wrappers", | 536 "//third_party/webrtc/system_wrappers", |
| 536 "//third_party/webrtc/voice_engine", | 537 "//third_party/webrtc/voice_engine", |
| 537 ] | 538 ] |
| 538 } | 539 } |
| 539 } # enable_webrtc | 540 } # enable_webrtc |
| 540 # TODO(GYP): Port libjingle.gyp's enable_webrtc condition block. | 541 # TODO(GYP): Port libjingle.gyp's enable_webrtc condition block. |
| OLD | NEW |