kjellander@webrtc.org | cc33737 | 2012-01-04 08:09:32 +0000 | [diff] [blame] | 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': [ |
andrew@webrtc.org | 81cf5e4 | 2012-06-27 01:41:54 +0000 | [diff] [blame] | 11 | '../build/common.gypi', |
kjellander@webrtc.org | cc33737 | 2012-01-04 08:09:32 +0000 | [diff] [blame] | 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. |
| 20 | 'target_name': 'metrics', |
wjia@webrtc.org | a3c82bf | 2013-01-18 23:42:21 +0000 | [diff] [blame] | 21 | 'type': 'static_library', |
kjellander@webrtc.org | cc33737 | 2012-01-04 08:09:32 +0000 | [diff] [blame] | 22 | 'dependencies': [ |
andrew@webrtc.org | fa418ac | 2012-09-11 01:34:21 +0000 | [diff] [blame] | 23 | '<(webrtc_root)/common_video/common_video.gyp:common_video', |
mikhal@webrtc.org | 9fedff7 | 2012-10-24 18:33:04 +0000 | [diff] [blame] | 24 | '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', |
kjellander@webrtc.org | cc33737 | 2012-01-04 08:09:32 +0000 | [diff] [blame] | 25 | ], |
kjellander@webrtc.org | cc33737 | 2012-01-04 08:09:32 +0000 | [diff] [blame] | 26 | 'sources': [ |
| 27 | 'testsupport/metrics/video_metrics.h', |
| 28 | 'testsupport/metrics/video_metrics.cc', |
| 29 | ], |
| 30 | }, |
kjellander@webrtc.org | 3365422 | 2013-08-22 07:57:00 +0000 | [diff] [blame] | 31 | ], # targets |
kjellander@webrtc.org | cc33737 | 2012-01-04 08:09:32 +0000 | [diff] [blame] | 32 | } |