| OLD | NEW |
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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("//build/config/arm.gni") | 9 import("//build/config/arm.gni") |
| 10 import("../../build/webrtc.gni") | 10 import("../../build/webrtc.gni") |
| (...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 ] | 380 ] |
| 381 } | 381 } |
| 382 | 382 |
| 383 source_set("isac_common") { | 383 source_set("isac_common") { |
| 384 sources = [ | 384 sources = [ |
| 385 "codecs/isac/audio_encoder_isac_t.h", | 385 "codecs/isac/audio_encoder_isac_t.h", |
| 386 "codecs/isac/audio_encoder_isac_t_impl.h", | 386 "codecs/isac/audio_encoder_isac_t_impl.h", |
| 387 "codecs/isac/locked_bandwidth_info.cc", | 387 "codecs/isac/locked_bandwidth_info.cc", |
| 388 "codecs/isac/locked_bandwidth_info.h", | 388 "codecs/isac/locked_bandwidth_info.h", |
| 389 ] | 389 ] |
| 390 public_configs = [ "../..:common_inherited_config" ] |
| 390 } | 391 } |
| 391 | 392 |
| 392 config("isac_config") { | 393 config("isac_config") { |
| 393 include_dirs = [ | 394 include_dirs = [ |
| 394 "../../..", | 395 "../../..", |
| 395 "codecs/isac/main/interface", | 396 "codecs/isac/main/interface", |
| 396 ] | 397 ] |
| 397 } | 398 } |
| 398 | 399 |
| 399 source_set("isac") { | 400 source_set("isac") { |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 774 "../../system_wrappers", | 775 "../../system_wrappers", |
| 775 ] | 776 ] |
| 776 | 777 |
| 777 defines = [] | 778 defines = [] |
| 778 | 779 |
| 779 if (rtc_include_opus) { | 780 if (rtc_include_opus) { |
| 780 defines += [ "WEBRTC_CODEC_OPUS" ] | 781 defines += [ "WEBRTC_CODEC_OPUS" ] |
| 781 deps += [ ":webrtc_opus" ] | 782 deps += [ ":webrtc_opus" ] |
| 782 } | 783 } |
| 783 } | 784 } |
| OLD | NEW |