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 'conditions': [ | 9 'conditions': [ |
10 ['include_tests==1', { | 10 ['include_tests==1', { |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 'dependencies': [ | 82 'dependencies': [ |
83 'common_video/common_video_unittests.gyp:*', | 83 'common_video/common_video_unittests.gyp:*', |
84 'rtc_unittests', | 84 'rtc_unittests', |
85 'system_wrappers/system_wrappers_tests.gyp:*', | 85 'system_wrappers/system_wrappers_tests.gyp:*', |
86 'test/metrics.gyp:*', | 86 'test/metrics.gyp:*', |
87 'test/test.gyp:*', | 87 'test/test.gyp:*', |
88 'test/webrtc_test_common.gyp:*', | 88 'test/webrtc_test_common.gyp:*', |
89 'webrtc_tests', | 89 'webrtc_tests', |
90 ], | 90 ], |
91 }], | 91 }], |
| 92 ['OS=="ios"', { |
| 93 'dependencies': [ |
| 94 # TODO(tkchin): Move this target to webrtc_all_dependencies once it |
| 95 # has more than iOS specific targets. |
| 96 # TODO(tkchin): Figure out where to add this in BUILD.gn. |
| 97 'api/api.gyp:*', |
| 98 ], |
| 99 }], |
92 ], | 100 ], |
93 }, | 101 }, |
94 { | 102 { |
95 'target_name': 'webrtc', | 103 'target_name': 'webrtc', |
96 'type': 'static_library', | 104 'type': 'static_library', |
97 'sources': [ | 105 'sources': [ |
98 'audio_receive_stream.h', | 106 'audio_receive_stream.h', |
99 'audio_send_stream.h', | 107 'audio_send_stream.h', |
100 'audio_state.h', | 108 'audio_state.h', |
101 'call.h', | 109 'call.h', |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 ], | 153 ], |
146 'defines': [ | 154 'defines': [ |
147 'ENABLE_RTC_EVENT_LOG', | 155 'ENABLE_RTC_EVENT_LOG', |
148 ], | 156 ], |
149 }], | 157 }], |
150 ], | 158 ], |
151 }, | 159 }, |
152 | 160 |
153 ], | 161 ], |
154 } | 162 } |
OLD | NEW |