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 1163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1174 public_configs = [ "../..:common_inherited_config" ] | 1174 public_configs = [ "../..:common_inherited_config" ] |
1175 | 1175 |
1176 if (is_clang) { | 1176 if (is_clang) { |
1177 # Suppress warnings from the Chromium Clang plugins (bugs.webrtc.org/163). | 1177 # Suppress warnings from the Chromium Clang plugins (bugs.webrtc.org/163). |
1178 configs -= [ "//build/config/clang:find_bad_constructs" ] | 1178 configs -= [ "//build/config/clang:find_bad_constructs" ] |
1179 } | 1179 } |
1180 | 1180 |
1181 deps = [ | 1181 deps = [ |
1182 ":neteq", | 1182 ":neteq", |
1183 ":neteq_unittest_tools", | 1183 ":neteq_unittest_tools", |
| 1184 "//testing/gtest", |
1184 "//third_party/gflags", | 1185 "//third_party/gflags", |
1185 ] | 1186 ] |
1186 } | 1187 } |
1187 | 1188 |
1188 config("neteq_unittest_tools_config") { | 1189 config("neteq_unittest_tools_config") { |
1189 include_dirs = [ "tools" ] | 1190 include_dirs = [ "tools" ] |
1190 } | 1191 } |
1191 | 1192 |
1192 source_set("neteq_unittest_tools") { | 1193 source_set("neteq_unittest_tools") { |
1193 testonly = true | 1194 testonly = true |
(...skipping 338 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 |