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

Side by Side Diff: webrtc/test/metrics.gyp

Issue 2267113002: GN: Fix test_support_unittests and MIPS compile issue. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Move all metrics/ sources and remove metrics.gyp Created 4 years, 3 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/test/BUILD.gn ('k') | webrtc/test/test.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
2 #
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
5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree.
8
9 {
10 'includes': [
11 '../build/common.gypi',
12 ],
13 'targets': [
14 {
15 # The metrics code must be kept in its own GYP file in order to
16 # avoid a circular dependency error due to the dependency on libyuv.
17 # If the code would be put in test.gyp a circular dependency error during
18 # GYP generation would occur, because the libyuv.gypi unittest target
19 # depends on test_support_main. See issue #160 for more info.
kjellander_webrtc 2016/08/23 06:29:54 I believe this dependency problem no longer exists
20 'target_name': 'metrics',
21 'type': 'static_library',
22 'dependencies': [
23 '<(webrtc_root)/common_video/common_video.gyp:common_video',
24 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
25 ],
26 'sources': [
27 'testsupport/metrics/video_metrics.h',
28 'testsupport/metrics/video_metrics.cc',
29 ],
30 },
31 ], # targets
32 }
OLDNEW
« no previous file with comments | « webrtc/test/BUILD.gn ('k') | webrtc/test/test.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698