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/webrtc.gni") | 9 import("../../build/webrtc.gni") |
10 import("audio_coding.gni") | 10 import("audio_coding.gni") |
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
439 configs += [ "../..:common_config" ] | 439 configs += [ "../..:common_config" ] |
440 | 440 |
441 public_configs = [ | 441 public_configs = [ |
442 "../..:common_inherited_config", | 442 "../..:common_inherited_config", |
443 ":ilbc_config", | 443 ":ilbc_config", |
444 ] | 444 ] |
445 | 445 |
446 deps = [ | 446 deps = [ |
447 ":audio_decoder_interface", | 447 ":audio_decoder_interface", |
448 ":audio_encoder_interface", | 448 ":audio_encoder_interface", |
| 449 "../../base:rtc_base_approved", |
449 "../../common_audio", | 450 "../../common_audio", |
450 ] | 451 ] |
451 } | 452 } |
452 | 453 |
453 source_set("isac_common") { | 454 source_set("isac_common") { |
454 sources = [ | 455 sources = [ |
455 "codecs/isac/audio_encoder_isac_t.h", | 456 "codecs/isac/audio_encoder_isac_t.h", |
456 "codecs/isac/audio_encoder_isac_t_impl.h", | 457 "codecs/isac/audio_encoder_isac_t_impl.h", |
457 "codecs/isac/locked_bandwidth_info.cc", | 458 "codecs/isac/locked_bandwidth_info.cc", |
458 "codecs/isac/locked_bandwidth_info.h", | 459 "codecs/isac/locked_bandwidth_info.h", |
(...skipping 1073 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1532 ] | 1533 ] |
1533 | 1534 |
1534 if (is_win) { | 1535 if (is_win) { |
1535 cflags = [ | 1536 cflags = [ |
1536 # Disable warnings to enable Win64 build, issue 1323. | 1537 # Disable warnings to enable Win64 build, issue 1323. |
1537 "/wd4267", # size_t to int truncation | 1538 "/wd4267", # size_t to int truncation |
1538 ] | 1539 ] |
1539 } | 1540 } |
1540 } | 1541 } |
1541 } | 1542 } |
OLD | NEW |