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 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
548 "codecs/isac/fix/source/pitch_lag_tables.c", | 548 "codecs/isac/fix/source/pitch_lag_tables.c", |
549 "codecs/isac/fix/source/pitch_lag_tables.h", | 549 "codecs/isac/fix/source/pitch_lag_tables.h", |
550 "codecs/isac/fix/source/settings.h", | 550 "codecs/isac/fix/source/settings.h", |
551 "codecs/isac/fix/source/spectrum_ar_model_tables.c", | 551 "codecs/isac/fix/source/spectrum_ar_model_tables.c", |
552 "codecs/isac/fix/source/spectrum_ar_model_tables.h", | 552 "codecs/isac/fix/source/spectrum_ar_model_tables.h", |
553 "codecs/isac/fix/source/structs.h", | 553 "codecs/isac/fix/source/structs.h", |
554 "codecs/isac/fix/source/transform.c", | 554 "codecs/isac/fix/source/transform.c", |
555 "codecs/isac/fix/source/transform_tables.c", | 555 "codecs/isac/fix/source/transform_tables.c", |
556 ] | 556 ] |
557 | 557 |
558 if (!is_win) { | |
559 defines = [ "WEBRTC_LINUX" ] | |
560 } | |
561 | |
562 public_configs = [ ":isac_fix_config" ] | 558 public_configs = [ ":isac_fix_config" ] |
563 | 559 |
564 deps = [ | 560 deps = [ |
565 ":audio_decoder_interface", | 561 ":audio_decoder_interface", |
566 ":audio_encoder_interface", | 562 ":audio_encoder_interface", |
567 ":isac_common", | 563 ":isac_common", |
568 "../../common_audio", | 564 "../../common_audio", |
569 "../../system_wrappers", | 565 "../../system_wrappers", |
570 ] | 566 ] |
571 | 567 |
(...skipping 994 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1566 "//testing/gtest", | 1562 "//testing/gtest", |
1567 ] | 1563 ] |
1568 | 1564 |
1569 if (is_clang) { | 1565 if (is_clang) { |
1570 # Suppress warnings from Chrome's Clang plugins. | 1566 # Suppress warnings from Chrome's Clang plugins. |
1571 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 1567 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
1572 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 1568 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
1573 } | 1569 } |
1574 } | 1570 } |
1575 } | 1571 } |
OLD | NEW |