Chromium Code Reviews| 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 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 533 ":audio_decoder_interface", | 533 ":audio_decoder_interface", |
| 534 ":audio_encoder_interface", | 534 ":audio_encoder_interface", |
| 535 ":isac_common", | 535 ":isac_common", |
| 536 ] | 536 ] |
| 537 public_deps = [ | 537 public_deps = [ |
| 538 ":isac_c", | 538 ":isac_c", |
| 539 ] | 539 ] |
| 540 } | 540 } |
| 541 | 541 |
| 542 rtc_static_library("isac_c") { | 542 rtc_static_library("isac_c") { |
| 543 visibility = [ ":*" ] # Only targets in this file can depend on this. | 543 # Only targets in this file should depend on this (or testing targets). |
| 544 visibility = [ | |
| 545 "//webrtc/modules:_modules_unittests__library", | |
| 546 "//webrtc/modules:modules_tests", | |
| 547 "//webrtc/modules:modules_tests_arch_executable", | |
| 548 "//webrtc/modules:modules_unittests", | |
| 549 "//webrtc/modules:modules_unittests__test_runner_script", | |
| 550 "//webrtc/modules:modules_unittests__test_runner_script__write_deps", | |
| 551 "//webrtc/modules:modules_unittests_apk__create__package", | |
| 552 "//webrtc/modules:modules_unittests_apk__create__package_resources", | |
| 553 "//webrtc/modules:modules_unittests_apk__create_incremental__package", | |
| 554 "//webrtc/modules:modules_unittests_apk__create_incremental__package_resourc es", | |
| 555 "//webrtc/modules:modules_unittests_apk__create_incremental_generate_manifes t", | |
| 556 "//webrtc/modules:modules_unittests_apk__java__compile_java__javac", | |
| 557 "//webrtc/modules:modules_unittests_apk__java__compile_java__process_prebuil t__assert", | |
| 558 "//webrtc/modules:modules_unittests_apk__java__compile_java__process_prebuil t__copy", | |
| 559 "//webrtc/modules:modules_unittests_apk__process_resources", | |
| 560 "//webrtc/modules:modules_unittests_arch_executable", | |
| 561 "//webrtc/modules:modules_unittests_arch_executable_sources", | |
| 562 "//webrtc/modules:modules_unittests_incremental__test_runner_script", | |
| 563 "//webrtc/modules:modules_unittests_incremental__test_runner_script__write_d eps", | |
| 564 ":*", | |
| 565 ] | |
| 566 | |
| 544 sources = [ | 567 sources = [ |
| 545 "codecs/isac/main/include/audio_decoder_isac.h", | 568 "codecs/isac/main/include/audio_decoder_isac.h", |
| 546 "codecs/isac/main/include/audio_encoder_isac.h", | 569 "codecs/isac/main/include/audio_encoder_isac.h", |
| 547 "codecs/isac/main/include/isac.h", | 570 "codecs/isac/main/include/isac.h", |
| 548 "codecs/isac/main/source/arith_routines.c", | 571 "codecs/isac/main/source/arith_routines.c", |
| 549 "codecs/isac/main/source/arith_routines.h", | 572 "codecs/isac/main/source/arith_routines.h", |
| 550 "codecs/isac/main/source/arith_routines_hist.c", | 573 "codecs/isac/main/source/arith_routines_hist.c", |
| 551 "codecs/isac/main/source/arith_routines_logist.c", | 574 "codecs/isac/main/source/arith_routines_logist.c", |
| 552 "codecs/isac/main/source/bandwidth_estimator.c", | 575 "codecs/isac/main/source/bandwidth_estimator.c", |
| 553 "codecs/isac/main/source/bandwidth_estimator.h", | 576 "codecs/isac/main/source/bandwidth_estimator.h", |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 801 "../..:webrtc_common", | 824 "../..:webrtc_common", |
| 802 "../../base:rtc_base_approved", | 825 "../../base:rtc_base_approved", |
| 803 ] | 826 ] |
| 804 public_deps = [ | 827 public_deps = [ |
| 805 ":pcm16b_c", | 828 ":pcm16b_c", |
| 806 ] | 829 ] |
| 807 public_configs = [ ":pcm16b_config" ] | 830 public_configs = [ ":pcm16b_config" ] |
| 808 } | 831 } |
| 809 | 832 |
| 810 rtc_source_set("pcm16b_c") { | 833 rtc_source_set("pcm16b_c") { |
| 811 visibility = [ ":*" ] # Only targets in this file can depend on this. | 834 # Only targets in this file should depend on this (or testing targets). |
| 835 visibility = [ | |
| 836 "//webrtc/modules:_modules_tests__library", | |
|
kjellander_webrtc
2016/12/30 13:22:44
Please make this //webrtc/modules:* instead.
All t
mbonadei
2016/12/30 13:36:10
Acknowledged.
| |
| 837 "//webrtc/modules:modules_tests", | |
| 838 "//webrtc/modules:modules_tests__test_runner_script", | |
| 839 "//webrtc/modules:modules_tests__test_runner_script__write_deps", | |
| 840 "//webrtc/modules:modules_tests_apk__create__package", | |
| 841 "//webrtc/modules:modules_tests_apk__create__package_resources", | |
| 842 "//webrtc/modules:modules_tests_apk__create_incremental__package", | |
| 843 "//webrtc/modules:modules_tests_apk__create_incremental__package_resources", | |
| 844 "//webrtc/modules:modules_tests_apk__create_incremental_generate_manifest", | |
| 845 "//webrtc/modules:modules_tests_apk__java__compile_java__javac", | |
| 846 "//webrtc/modules:modules_tests_apk__java__compile_java__process_prebuilt__a ssert", | |
| 847 "//webrtc/modules:modules_tests_apk__java__compile_java__process_prebuilt__c opy", | |
| 848 "//webrtc/modules:modules_tests_apk__process_resources", | |
| 849 "//webrtc/modules:modules_tests_arch_executable", | |
| 850 "//webrtc/modules:modules_tests_arch_executable_sources", | |
| 851 "//webrtc/modules:modules_tests_incremental__test_runner_script", | |
| 852 "//webrtc/modules:modules_tests_incremental__test_runner_script__write_deps" , | |
| 853 ":*", | |
| 854 ] | |
| 812 sources = [ | 855 sources = [ |
| 813 "codecs/pcm16b/pcm16b.c", | 856 "codecs/pcm16b/pcm16b.c", |
| 814 "codecs/pcm16b/pcm16b.h", | 857 "codecs/pcm16b/pcm16b.h", |
| 815 ] | 858 ] |
| 816 | 859 |
| 817 public_configs = [ ":pcm16b_config" ] | 860 public_configs = [ ":pcm16b_config" ] |
| 818 deps = [ | 861 deps = [ |
| 819 "../..:webrtc_common", | 862 "../..:webrtc_common", |
| 820 ] | 863 ] |
| 821 } | 864 } |
| (...skipping 1093 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1915 "../../test:test_main", | 1958 "../../test:test_main", |
| 1916 "//testing/gtest", | 1959 "//testing/gtest", |
| 1917 ] | 1960 ] |
| 1918 | 1961 |
| 1919 if (!build_with_chromium && is_clang) { | 1962 if (!build_with_chromium && is_clang) { |
| 1920 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 1963 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 1921 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 1964 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 1922 } | 1965 } |
| 1923 } | 1966 } |
| 1924 } | 1967 } |
| OLD | NEW |