| 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 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 "source/talk/media/webrtc/webrtcvoiceengine.cc", | 542 "source/talk/media/webrtc/webrtcvoiceengine.cc", |
| 543 "source/talk/media/webrtc/webrtcvoiceengine.h", | 543 "source/talk/media/webrtc/webrtcvoiceengine.h", |
| 544 ] | 544 ] |
| 545 | 545 |
| 546 configs += [ ":jingle_unexported_configs" ] | 546 configs += [ ":jingle_unexported_configs" ] |
| 547 public_configs = [ ":jingle_direct_dependent_configs" ] | 547 public_configs = [ ":jingle_direct_dependent_configs" ] |
| 548 | 548 |
| 549 deps = [ | 549 deps = [ |
| 550 ":libjingle_webrtc_common", | 550 ":libjingle_webrtc_common", |
| 551 "//third_party/webrtc", | 551 "//third_party/webrtc", |
| 552 "//third_party/webrtc/modules/audio_processing", | |
| 553 "//third_party/webrtc/system_wrappers", | 552 "//third_party/webrtc/system_wrappers", |
| 554 "//third_party/webrtc/voice_engine", | 553 "//third_party/webrtc/voice_engine", |
| 555 ] | 554 ] |
| 556 } | 555 } |
| 557 | 556 |
| 558 } # enable_webrtc | 557 } # enable_webrtc |
| 559 | 558 |
| 560 # TODO(GYP): Port libjingle.gyp's enable_webrtc condition block. | 559 # TODO(GYP): Port libjingle.gyp's enable_webrtc condition block. |
| OLD | NEW |