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

Side by Side Diff: webrtc/webrtc.gyp

Issue 1990593002: Add missing headers and fix some missing dependencies (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 7 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/common.gyp ('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 'variables': { 9 'variables': {
10 'webrtc_all_dependencies': [ 10 'webrtc_all_dependencies': [
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 'targets': [ 71 'targets': [
72 { 72 {
73 'target_name': 'rtc_event_log_parser', 73 'target_name': 'rtc_event_log_parser',
74 'type': 'static_library', 74 'type': 'static_library',
75 'sources': [ 75 'sources': [
76 'call/rtc_event_log_parser.cc', 76 'call/rtc_event_log_parser.cc',
77 'call/rtc_event_log_parser.h', 77 'call/rtc_event_log_parser.h',
78 ], 78 ],
79 'dependencies': [ 79 'dependencies': [
80 'rtc_event_log_proto', 80 'rtc_event_log_proto',
81 '<(webrtc_root)/base/base.gyp:rtc_base_approved',
81 ], 82 ],
82 'export_dependent_settings': [ 83 'export_dependent_settings': [
83 'rtc_event_log_proto', 84 'rtc_event_log_proto',
84 ], 85 ],
85 }, 86 },
86 ], 87 ],
87 }], 88 }],
88 ['include_tests==1 and enable_protobuf==1', { 89 ['include_tests==1 and enable_protobuf==1', {
89 'targets': [ 90 'targets': [
90 { 91 {
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 ], 137 ],
137 }, 138 },
138 { 139 {
139 'target_name': 'webrtc', 140 'target_name': 'webrtc',
140 'type': 'static_library', 141 'type': 'static_library',
141 'sources': [ 142 'sources': [
142 'audio_receive_stream.h', 143 'audio_receive_stream.h',
143 'audio_send_stream.h', 144 'audio_send_stream.h',
144 'audio_state.h', 145 'audio_state.h',
145 'call.h', 146 'call.h',
146 'config.h', 147 'common.h',
147 'transport.h', 148 'transport.h',
148 'video_receive_stream.h', 149 'video_receive_stream.h',
149 'video_send_stream.h', 150 'video_send_stream.h',
150 151
151 '<@(webrtc_audio_sources)', 152 '<@(webrtc_audio_sources)',
152 '<@(webrtc_call_sources)', 153 '<@(webrtc_call_sources)',
153 '<@(webrtc_video_sources)', 154 '<@(webrtc_video_sources)',
154 ], 155 ],
155 'dependencies': [ 156 'dependencies': [
156 'common.gyp:*', 157 'common.gyp:*',
(...skipping 14 matching lines...) Expand all
171 }, 172 },
172 { 173 {
173 'target_name': 'rtc_event_log', 174 'target_name': 'rtc_event_log',
174 'type': 'static_library', 175 'type': 'static_library',
175 'sources': [ 176 'sources': [
176 'call/rtc_event_log.cc', 177 'call/rtc_event_log.cc',
177 'call/rtc_event_log.h', 178 'call/rtc_event_log.h',
178 'call/rtc_event_log_helper_thread.cc', 179 'call/rtc_event_log_helper_thread.cc',
179 'call/rtc_event_log_helper_thread.h', 180 'call/rtc_event_log_helper_thread.h',
180 ], 181 ],
182 'dependencies': [
183 '<(webrtc_root)/base/base.gyp:rtc_base_approved',
184 ],
181 'conditions': [ 185 'conditions': [
182 # If enable_protobuf is defined, we want to compile the protobuf 186 # If enable_protobuf is defined, we want to compile the protobuf
183 # and add rtc_event_log.pb.h and rtc_event_log.pb.cc to the sources. 187 # and add rtc_event_log.pb.h and rtc_event_log.pb.cc to the sources.
184 ['enable_protobuf==1', { 188 ['enable_protobuf==1', {
185 'dependencies': [ 189 'dependencies': [
186 'rtc_event_log_proto', 190 'rtc_event_log_proto',
187 ], 191 ],
188 'defines': [ 192 'defines': [
189 'ENABLE_RTC_EVENT_LOG', 193 'ENABLE_RTC_EVENT_LOG',
190 ], 194 ],
191 }], 195 }],
192 ], 196 ],
193 }, 197 },
194 198
195 ], 199 ],
196 } 200 }
OLDNEW
« no previous file with comments | « webrtc/common.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698