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

Side by Side Diff: webrtc/media/media.gyp

Issue 1751583002: Remove unused libudev on Linux. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 4 years, 9 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/media/devices/v4llookup.cc ('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) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 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 { 9 {
10 'includes': [ '../build/common.gypi', ], 10 'includes': [ '../build/common.gypi', ],
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 'defines': [ 148 'defines': [
149 'HAVE_WEBRTC_VIDEO', 149 'HAVE_WEBRTC_VIDEO',
150 'HAVE_WEBRTC_VOICE', 150 'HAVE_WEBRTC_VOICE',
151 ], 151 ],
152 }, 152 },
153 'dependencies': [ 153 'dependencies': [
154 '<(webrtc_root)/modules/modules.gyp:video_capture_module_internal_im pl', 154 '<(webrtc_root)/modules/modules.gyp:video_capture_module_internal_im pl',
155 '<(webrtc_root)/modules/modules.gyp:video_render_module_internal_imp l', 155 '<(webrtc_root)/modules/modules.gyp:video_render_module_internal_imp l',
156 ], 156 ],
157 }], 157 }],
158 ['OS=="linux" and include_internal_device_management==1', {
159 'sources': [
160 'devices/libudevsymboltable.cc',
161 'devices/libudevsymboltable.h',
162 'devices/v4llookup.cc',
163 'devices/v4llookup.h',
164 ],
165 'include_dirs': [
166 'third_party/libudev'
167 ],
168 'libraries': [
169 '-lrt',
170 ],
171 }],
172 ['OS=="linux" and use_gtk==1', { 158 ['OS=="linux" and use_gtk==1', {
173 'sources': [ 159 'sources': [
174 'devices/gtkvideorenderer.cc', 160 'devices/gtkvideorenderer.cc',
175 'devices/gtkvideorenderer.h', 161 'devices/gtkvideorenderer.h',
176 ], 162 ],
177 'cflags': [ 163 'cflags': [
178 '<!@(pkg-config --cflags gobject-2.0 gthread-2.0 gtk+-2.0)', 164 '<!@(pkg-config --cflags gobject-2.0 gthread-2.0 gtk+-2.0)',
179 ], 165 ],
180 }], 166 }],
181 ['OS=="win"', { 167 ['OS=="win"', {
(...skipping 26 matching lines...) Expand all
208 }], 194 }],
209 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { 195 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', {
210 'defines': [ 196 'defines': [
211 'CARBON_DEPRECATED=YES', 197 'CARBON_DEPRECATED=YES',
212 ], 198 ],
213 }], 199 }],
214 ], 200 ],
215 }, # target rtc_media 201 }, # target rtc_media
216 ], # targets. 202 ], # targets.
217 } 203 }
OLDNEW
« no previous file with comments | « webrtc/media/devices/v4llookup.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698