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

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

Issue 2041233006: GN: Add modules_unittests (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Correct path to base.gyp Created 4 years, 6 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
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/webrtc.gni") 9 import("../../build/webrtc.gni")
10 10
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 301
302 deps = [ 302 deps = [
303 ":video_coding_utility", 303 ":video_coding_utility",
304 "../../common_video", 304 "../../common_video",
305 "../../system_wrappers", 305 "../../system_wrappers",
306 ] 306 ]
307 if (rtc_build_libvpx) { 307 if (rtc_build_libvpx) {
308 deps += [ rtc_libvpx_dir ] 308 deps += [ rtc_libvpx_dir ]
309 } 309 }
310 } 310 }
311
312 if (rtc_include_tests) {
313 source_set("video_codecs_test_framework") {
314 testonly = true
315 sources = [
316 "codecs/test/mock/mock_packet_manipulator.h",
317 "codecs/test/packet_manipulator.cc",
318 "codecs/test/packet_manipulator.h",
319 "codecs/test/predictive_packet_manipulator.cc",
320 "codecs/test/predictive_packet_manipulator.h",
321 "codecs/test/stats.cc",
322 "codecs/test/stats.h",
323 "codecs/test/videoprocessor.cc",
324 "codecs/test/videoprocessor.h",
325 ]
326
327 configs += [ "../..:common_config" ]
328 public_configs = [ "../..:common_inherited_config" ]
329
330 if (is_clang) {
331 # Suppress warnings from Chrome's Clang plugins.
332 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
333 configs -= [ "//build/config/clang:find_bad_constructs" ]
334 }
335
336 deps = [
337 "../../test:test_support",
338 ]
339 }
340 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698