| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|    85     "acm2/acm_common_defs.h", |    85     "acm2/acm_common_defs.h", | 
|    86     "acm2/acm_receiver.cc", |    86     "acm2/acm_receiver.cc", | 
|    87     "acm2/acm_receiver.h", |    87     "acm2/acm_receiver.h", | 
|    88     "acm2/acm_resampler.cc", |    88     "acm2/acm_resampler.cc", | 
|    89     "acm2/acm_resampler.h", |    89     "acm2/acm_resampler.h", | 
|    90     "acm2/audio_coding_module.cc", |    90     "acm2/audio_coding_module.cc", | 
|    91     "acm2/call_statistics.cc", |    91     "acm2/call_statistics.cc", | 
|    92     "acm2/call_statistics.h", |    92     "acm2/call_statistics.h", | 
|    93     "acm2/codec_manager.cc", |    93     "acm2/codec_manager.cc", | 
|    94     "acm2/codec_manager.h", |    94     "acm2/codec_manager.h", | 
|    95     "acm2/initial_delay_manager.cc", |  | 
|    96     "acm2/initial_delay_manager.h", |  | 
|    97     "include/audio_coding_module.h", |    95     "include/audio_coding_module.h", | 
|    98     "include/audio_coding_module_typedefs.h", |    96     "include/audio_coding_module_typedefs.h", | 
|    99   ] |    97   ] | 
|   100  |    98  | 
|   101   defines = [] |    99   defines = [] | 
|   102  |   100  | 
|   103   public_configs = [ ":audio_coding_config" ] |   101   public_configs = [ ":audio_coding_config" ] | 
|   104  |   102  | 
|   105   if (rtc_include_opus) { |   103   if (rtc_include_opus) { | 
|   106     public_deps = [ |   104     public_deps = [ | 
| (...skipping 1484 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1591       "//testing/gtest", |  1589       "//testing/gtest", | 
|  1592     ] |  1590     ] | 
|  1593  |  1591  | 
|  1594     if (is_clang) { |  1592     if (is_clang) { | 
|  1595       # Suppress warnings from Chrome's Clang plugins. |  1593       # Suppress warnings from Chrome's Clang plugins. | 
|  1596       # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |  1594       # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 
|  1597       suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |  1595       suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 
|  1598     } |  1596     } | 
|  1599   } |  1597   } | 
|  1600 } |  1598 } | 
| OLD | NEW |