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

Side by Side Diff: webrtc/webrtc.gyp

Issue 1989823002: Revert of 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',
82 ], 81 ],
83 'export_dependent_settings': [ 82 'export_dependent_settings': [
84 'rtc_event_log_proto', 83 'rtc_event_log_proto',
85 ], 84 ],
86 }, 85 },
87 ], 86 ],
88 }], 87 }],
89 ['include_tests==1 and enable_protobuf==1', { 88 ['include_tests==1 and enable_protobuf==1', {
90 'targets': [ 89 'targets': [
91 { 90 {
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 ], 136 ],
138 }, 137 },
139 { 138 {
140 'target_name': 'webrtc', 139 'target_name': 'webrtc',
141 'type': 'static_library', 140 'type': 'static_library',
142 'sources': [ 141 'sources': [
143 'audio_receive_stream.h', 142 'audio_receive_stream.h',
144 'audio_send_stream.h', 143 'audio_send_stream.h',
145 'audio_state.h', 144 'audio_state.h',
146 'call.h', 145 'call.h',
147 'common.h', 146 'config.h',
148 'transport.h', 147 'transport.h',
149 'video_receive_stream.h', 148 'video_receive_stream.h',
150 'video_send_stream.h', 149 'video_send_stream.h',
151 150
152 '<@(webrtc_audio_sources)', 151 '<@(webrtc_audio_sources)',
153 '<@(webrtc_call_sources)', 152 '<@(webrtc_call_sources)',
154 '<@(webrtc_video_sources)', 153 '<@(webrtc_video_sources)',
155 ], 154 ],
156 'dependencies': [ 155 'dependencies': [
157 'common.gyp:*', 156 'common.gyp:*',
(...skipping 14 matching lines...) Expand all
172 }, 171 },
173 { 172 {
174 'target_name': 'rtc_event_log', 173 'target_name': 'rtc_event_log',
175 'type': 'static_library', 174 'type': 'static_library',
176 'sources': [ 175 'sources': [
177 'call/rtc_event_log.cc', 176 'call/rtc_event_log.cc',
178 'call/rtc_event_log.h', 177 'call/rtc_event_log.h',
179 'call/rtc_event_log_helper_thread.cc', 178 'call/rtc_event_log_helper_thread.cc',
180 'call/rtc_event_log_helper_thread.h', 179 'call/rtc_event_log_helper_thread.h',
181 ], 180 ],
182 'dependencies': [
183 '<(webrtc_root)/base/base.gyp:rtc_base_approved',
184 ],
185 'conditions': [ 181 'conditions': [
186 # If enable_protobuf is defined, we want to compile the protobuf 182 # If enable_protobuf is defined, we want to compile the protobuf
187 # and add rtc_event_log.pb.h and rtc_event_log.pb.cc to the sources. 183 # and add rtc_event_log.pb.h and rtc_event_log.pb.cc to the sources.
188 ['enable_protobuf==1', { 184 ['enable_protobuf==1', {
189 'dependencies': [ 185 'dependencies': [
190 'rtc_event_log_proto', 186 'rtc_event_log_proto',
191 ], 187 ],
192 'defines': [ 188 'defines': [
193 'ENABLE_RTC_EVENT_LOG', 189 'ENABLE_RTC_EVENT_LOG',
194 ], 190 ],
195 }], 191 }],
196 ], 192 ],
197 }, 193 },
198 194
199 ], 195 ],
200 } 196 }
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