| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 '<@(webrtc_video_sources)', | 112 '<@(webrtc_video_sources)', |
| 113 ], | 113 ], |
| 114 'dependencies': [ | 114 'dependencies': [ |
| 115 'common.gyp:*', | 115 'common.gyp:*', |
| 116 '<@(webrtc_audio_dependencies)', | 116 '<@(webrtc_audio_dependencies)', |
| 117 '<@(webrtc_call_dependencies)', | 117 '<@(webrtc_call_dependencies)', |
| 118 '<@(webrtc_video_dependencies)', | 118 '<@(webrtc_video_dependencies)', |
| 119 'rtc_event_log', | 119 'rtc_event_log', |
| 120 ], | 120 ], |
| 121 'conditions': [ | 121 'conditions': [ |
| 122 # TODO(andresp): Chromium libpeerconnection should link directly with | 122 # TODO(andresp): Chromium should link directly with this and no if |
| 123 # this and no if conditions should be needed on webrtc build files. | 123 # conditions should be needed on webrtc build files. |
| 124 ['build_with_chromium==1', { | 124 ['build_with_chromium==1', { |
| 125 'dependencies': [ | 125 'dependencies': [ |
| 126 '<(webrtc_root)/modules/modules.gyp:video_capture', | 126 '<(webrtc_root)/modules/modules.gyp:video_capture', |
| 127 '<(webrtc_root)/modules/modules.gyp:video_render', | 127 '<(webrtc_root)/modules/modules.gyp:video_render', |
| 128 ], | 128 ], |
| 129 }], | 129 }], |
| 130 ], | 130 ], |
| 131 }, | 131 }, |
| 132 { | 132 { |
| 133 'target_name': 'rtc_event_log', | 133 'target_name': 'rtc_event_log', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 145 ], | 145 ], |
| 146 'defines': [ | 146 'defines': [ |
| 147 'ENABLE_RTC_EVENT_LOG', | 147 'ENABLE_RTC_EVENT_LOG', |
| 148 ], | 148 ], |
| 149 }], | 149 }], |
| 150 ], | 150 ], |
| 151 }, | 151 }, |
| 152 | 152 |
| 153 ], | 153 ], |
| 154 } | 154 } |
| OLD | NEW |