OLD | NEW |
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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 'dependencies': [ | 120 'dependencies': [ |
121 'api/api_tests.gyp:*', | 121 'api/api_tests.gyp:*', |
122 'common_video/common_video_unittests.gyp:*', | 122 'common_video/common_video_unittests.gyp:*', |
123 'rtc_unittests', | 123 'rtc_unittests', |
124 'system_wrappers/system_wrappers_tests.gyp:*', | 124 'system_wrappers/system_wrappers_tests.gyp:*', |
125 'test/metrics.gyp:*', | 125 'test/metrics.gyp:*', |
126 'test/test.gyp:*', | 126 'test/test.gyp:*', |
127 'webrtc_tests', | 127 'webrtc_tests', |
128 ], | 128 ], |
129 }], | 129 }], |
130 ['include_tests==1 and' | |
131 '(OS=="ios" or (OS=="mac" and mac_deployment_target=="10.7"))', { | |
132 'dependencies': [ | |
133 'sdk/sdk_tests.gyp:*', | |
134 ], | |
135 }], | |
136 ], | 130 ], |
137 }, | 131 }, |
138 { | 132 { |
139 'target_name': 'webrtc', | 133 'target_name': 'webrtc', |
140 'type': 'static_library', | 134 'type': 'static_library', |
141 'sources': [ | 135 'sources': [ |
142 'audio_receive_stream.h', | 136 'audio_receive_stream.h', |
143 'audio_send_stream.h', | 137 'audio_send_stream.h', |
144 'audio_state.h', | 138 'audio_state.h', |
145 'call.h', | 139 'call.h', |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 ], | 181 ], |
188 'defines': [ | 182 'defines': [ |
189 'ENABLE_RTC_EVENT_LOG', | 183 'ENABLE_RTC_EVENT_LOG', |
190 ], | 184 ], |
191 }], | 185 }], |
192 ], | 186 ], |
193 }, | 187 }, |
194 | 188 |
195 ], | 189 ], |
196 } | 190 } |
OLD | NEW |