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

Side by Side Diff: webrtc/webrtc.gyp

Issue 1226123005: Define Stream base classes (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Code review follow-up 3 Created 5 years, 5 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/video_send_stream.h ('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) 2012 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2012 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 'conditions': [ 9 'conditions': [
10 ['include_tests==1', { 10 ['include_tests==1', {
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 'test/metrics.gyp:*', 54 'test/metrics.gyp:*',
55 'test/test.gyp:*', 55 'test/test.gyp:*',
56 'test/webrtc_test_common.gyp:webrtc_test_common_unittests', 56 'test/webrtc_test_common.gyp:webrtc_test_common_unittests',
57 'video_engine/video_engine_core_unittests.gyp:video_engine_core_unit tests', 57 'video_engine/video_engine_core_unittests.gyp:video_engine_core_unit tests',
58 'webrtc_tests', 58 'webrtc_tests',
59 ], 59 ],
60 }], 60 }],
61 ], 61 ],
62 }, 62 },
63 { 63 {
64 # TODO(pbos): This is intended to contain audio parts as well as soon as
65 # VoiceEngine moves to the same new API format.
66 'target_name': 'webrtc', 64 'target_name': 'webrtc',
67 'type': 'static_library', 65 'type': 'static_library',
68 'sources': [ 66 'sources': [
67 'audio_receive_stream.h',
68 'audio_send_stream.h',
69 'call.h', 69 'call.h',
70 'config.h', 70 'config.h',
71 'experiments.h', 71 'experiments.h',
72 'frame_callback.h', 72 'frame_callback.h',
73 'stream.h',
73 'transport.h', 74 'transport.h',
74 'video_receive_stream.h', 75 'video_receive_stream.h',
75 'video_renderer.h', 76 'video_renderer.h',
76 'video_send_stream.h', 77 'video_send_stream.h',
77 78
78 '<@(webrtc_video_sources)', 79 '<@(webrtc_video_sources)',
79 ], 80 ],
80 'dependencies': [ 81 'dependencies': [
81 'common.gyp:*', 82 'common.gyp:*',
82 '<@(webrtc_video_dependencies)', 83 '<@(webrtc_video_dependencies)',
83 ], 84 ],
84 'conditions': [ 85 'conditions': [
85 # TODO(andresp): Chromium libpeerconnection should link directly with 86 # TODO(andresp): Chromium libpeerconnection should link directly with
86 # this and no if conditions should be needed on webrtc build files. 87 # this and no if conditions should be needed on webrtc build files.
87 ['build_with_chromium==1', { 88 ['build_with_chromium==1', {
88 'dependencies': [ 89 'dependencies': [
89 '<(webrtc_root)/modules/modules.gyp:video_capture', 90 '<(webrtc_root)/modules/modules.gyp:video_capture',
90 '<(webrtc_root)/modules/modules.gyp:video_render', 91 '<(webrtc_root)/modules/modules.gyp:video_render',
91 ], 92 ],
92 }], 93 }],
93 ], 94 ],
94 }, 95 },
95 ], 96 ],
96 } 97 }
OLDNEW
« no previous file with comments | « webrtc/video_send_stream.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698