| 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("../../webrtc.gni") |     9 import("../../webrtc.gni") | 
|    10 import("audio_coding.gni") |    10 import("audio_coding.gni") | 
| (...skipping 1307 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1318       suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |  1318       suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 
|  1319     } |  1319     } | 
|  1320  |  1320  | 
|  1321     deps = [] |  1321     deps = [] | 
|  1322  |  1322  | 
|  1323     defines = neteq_defines |  1323     defines = neteq_defines | 
|  1324  |  1324  | 
|  1325     deps += audio_coding_deps |  1325     deps += audio_coding_deps | 
|  1326     deps += [ |  1326     deps += [ | 
|  1327       ":audio_decoder_interface", |  1327       ":audio_decoder_interface", | 
 |  1328       ":ilbc", | 
|  1328       ":isac", |  1329       ":isac", | 
|  1329       ":isac_fix", |  1330       ":isac_fix", | 
|  1330       ":neteq", |  1331       ":neteq", | 
|  1331       ":neteq_unittest_tools", |  1332       ":neteq_unittest_tools", | 
|  1332       "../../common_audio", |  1333       "../../common_audio", | 
|  1333       "../../test:test_main", |  1334       "../../test:test_main", | 
|  1334       "//testing/gtest", |  1335       "//testing/gtest", | 
|  1335     ] |  1336     ] | 
|  1336  |  1337  | 
|  1337     data = audio_decoder_unittests_resources |  1338     data = audio_decoder_unittests_resources | 
| (...skipping 769 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  2107         ":neteq_unittest_proto", |  2108         ":neteq_unittest_proto", | 
|  2108       ] |  2109       ] | 
|  2109     } |  2110     } | 
|  2110  |  2111  | 
|  2111     if (!build_with_chromium && is_clang) { |  2112     if (!build_with_chromium && is_clang) { | 
|  2112       # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |  2113       # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 
|  2113       suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |  2114       suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 
|  2114     } |  2115     } | 
|  2115   } |  2116   } | 
|  2116 } |  2117 } | 
| OLD | NEW |