Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Side by Side Diff: webrtc/modules/audio_processing/BUILD.gn

Issue 2178963002: Add webrtc_perf_tests to BUILD.gn (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Remove audio_buffer_tools from modules_unittests to match the gyp file. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/modules/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/config/arm.gni") 9 import("//build/config/arm.gni")
10 import("//third_party/protobuf/proto_library.gni") 10 import("//third_party/protobuf/proto_library.gni")
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 } else { 312 } else {
313 defines = [ "WEBRTC_AEC_DEBUG_DUMP=0" ] 313 defines = [ "WEBRTC_AEC_DEBUG_DUMP=0" ]
314 } 314 }
315 } 315 }
316 } 316 }
317 317
318 if (rtc_include_tests) { 318 if (rtc_include_tests) {
319 source_set("audioproc_test_utils") { 319 source_set("audioproc_test_utils") {
320 testonly = true 320 testonly = true
321 sources = [ 321 sources = [
322 "test/audio_buffer_tools.cc",
323 "test/audio_buffer_tools.h",
322 "test/test_utils.cc", 324 "test/test_utils.cc",
323 "test/test_utils.h", 325 "test/test_utils.h",
324 ] 326 ]
325 327
326 configs += [ "../..:common_config" ] 328 configs += [ "../..:common_config" ]
327 public_configs = [ "../..:common_inherited_config" ] 329 public_configs = [ "../..:common_inherited_config" ]
328 330
329 if (is_clang) { 331 if (is_clang) {
330 # Suppress warnings from the Chromium Clang plugins (bugs.webrtc.org/163). 332 # Suppress warnings from the Chromium Clang plugins (bugs.webrtc.org/163).
331 configs -= [ "//build/config/clang:find_bad_constructs" ] 333 configs -= [ "//build/config/clang:find_bad_constructs" ]
(...skipping 18 matching lines...) Expand all
350 "test/protobuf_utils.cc", 352 "test/protobuf_utils.cc",
351 "test/protobuf_utils.h", 353 "test/protobuf_utils.h",
352 ] 354 ]
353 355
354 deps = [ 356 deps = [
355 ":audioproc_unittest_proto", 357 ":audioproc_unittest_proto",
356 ] 358 ]
357 } 359 }
358 } 360 }
359 } 361 }
OLDNEW
« no previous file with comments | « webrtc/modules/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698