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

Side by Side Diff: webrtc/video_engine/video_engine_core_unittests.gyp

Issue 1409803007: Remove 'video_engine_core_unittests' binary. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 5 years 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
(Empty)
1 # Copyright (c) 2012 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 'target_name': 'video_engine_core_unittests',
16 'type': '<(gtest_target_type)',
17 'dependencies': [
18 '<(webrtc_root)/webrtc.gyp:webrtc',
19 '<(webrtc_root)/modules/modules.gyp:video_capture_module_internal_impl',
20 '<(webrtc_root)/modules/modules.gyp:video_render_module_internal_impl',
21 '<(DEPTH)/testing/gtest.gyp:gtest',
22 '<(DEPTH)/testing/gmock.gyp:gmock',
23 '<(webrtc_root)/test/test.gyp:test_support_main',
24 ],
25 'sources': [
26 'call_stats_unittest.cc',
27 'encoder_state_feedback_unittest.cc',
28 'overuse_frame_detector_unittest.cc',
29 'payload_router_unittest.cc',
30 'report_block_stats_unittest.cc',
31 'stream_synchronization_unittest.cc',
32 'vie_codec_unittest.cc',
33 'vie_remb_unittest.cc',
34 ],
35 'conditions': [
36 ['OS=="android"', {
37 'dependencies': [
38 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code',
39 ],
40 }],
41 ],
42 },
43 ], # targets
44 'conditions': [
45 ['OS=="android"', {
46 'targets': [
47 {
48 'target_name': 'video_engine_core_unittests_apk_target',
49 'type': 'none',
50 'dependencies': [
51 '<(apk_tests_path):video_engine_core_unittests_apk',
52 ],
53 },
54 ],
55 }],
56 ['test_isolation_mode != "noop"', {
57 'targets': [
58 {
59 'target_name': 'video_engine_core_unittests_run',
60 'type': 'none',
61 'dependencies': [
62 'video_engine_core_unittests',
63 ],
64 'includes': [
65 '../build/isolate.gypi',
66 ],
67 'sources': [
68 'video_engine_core_unittests.isolate',
69 ],
70 },
71 ],
72 }],
73 ],
74 }
OLDNEW
« no previous file with comments | « webrtc/build/apk_tests_noop.gyp ('k') | webrtc/video_engine/video_engine_core_unittests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698