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

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

Issue 2169013002: Change class VideoCaptureDevice::Name to struct VideoCaptureDeviceDescriptor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Refactoring of VideoCaptureDeviceFactory interface Created 4 years, 4 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
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 'capture_sources': [ 8 'capture_sources': [
9 'capture_export.h', 9 'capture_export.h',
10 'content/animated_content_sampler.cc', 10 'content/animated_content_sampler.cc',
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 'video/mac/video_capture_device_avfoundation_mac.mm', 47 'video/mac/video_capture_device_avfoundation_mac.mm',
48 'video/mac/video_capture_device_decklink_mac.h', 48 'video/mac/video_capture_device_decklink_mac.h',
49 'video/mac/video_capture_device_decklink_mac.mm', 49 'video/mac/video_capture_device_decklink_mac.mm',
50 'video/mac/video_capture_device_factory_mac.h', 50 'video/mac/video_capture_device_factory_mac.h',
51 'video/mac/video_capture_device_factory_mac.mm', 51 'video/mac/video_capture_device_factory_mac.mm',
52 'video/mac/video_capture_device_mac.h', 52 'video/mac/video_capture_device_mac.h',
53 'video/mac/video_capture_device_mac.mm', 53 'video/mac/video_capture_device_mac.mm',
54 'video/scoped_result_callback.h', 54 'video/scoped_result_callback.h',
55 'video/video_capture_device.cc', 55 'video/video_capture_device.cc',
56 'video/video_capture_device.h', 56 'video/video_capture_device.h',
57 'video/video_capture_device_descriptor.cc',
58 'video/video_capture_device_descriptor.h',
57 'video/video_capture_device_factory.cc', 59 'video/video_capture_device_factory.cc',
58 'video/video_capture_device_factory.h', 60 'video/video_capture_device_factory.h',
59 'video/video_capture_device_info.cc', 61 'video/video_capture_device_info.cc',
60 'video/video_capture_device_info.h', 62 'video/video_capture_device_info.h',
61 'video/win/capability_list_win.cc', 63 'video/win/capability_list_win.cc',
62 'video/win/capability_list_win.h', 64 'video/win/capability_list_win.h',
63 'video/win/filter_base_win.cc', 65 'video/win/filter_base_win.cc',
64 'video/win/filter_base_win.h', 66 'video/win/filter_base_win.h',
65 'video/win/pin_base_win.cc', 67 'video/win/pin_base_win.cc',
66 'video/win/pin_base_win.h', 68 'video/win/pin_base_win.h',
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 ], 238 ],
237 'variables': { 239 'variables': {
238 'java_in_dir': 'video/android/java', 240 'java_in_dir': 'video/android/java',
239 }, 241 },
240 'includes': ['../../build/java.gypi'], 242 'includes': ['../../build/java.gypi'],
241 }, 243 },
242 { 244 {
243 'target_name': 'media_android_captureapitype', 245 'target_name': 'media_android_captureapitype',
244 'type': 'none', 246 'type': 'none',
245 'variables': { 247 'variables': {
246 'source_file': 'video/video_capture_device.h', 248 'source_file': 'video/video_capture_device_descriptor.h',
247 }, 249 },
248 'includes': [ '../../build/android/java_cpp_enum.gypi' ], 250 'includes': [ '../../build/android/java_cpp_enum.gypi' ],
249 }, 251 },
250 { 252 {
251 'target_name': 'media_android_imageformat', 253 'target_name': 'media_android_imageformat',
252 'type': 'none', 254 'type': 'none',
253 'variables': { 255 'variables': {
254 'source_file': 'video/android/video_capture_device_android.h', 256 'source_file': 'video/android/video_capture_device_android.h',
255 }, 257 },
256 'includes': [ '../../build/android/java_cpp_enum.gypi' ], 258 'includes': [ '../../build/android/java_cpp_enum.gypi' ],
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 ], 301 ],
300 }, 302 },
301 ], 303 ],
302 }], 304 }],
303 ], 305 ],
304 306
305 }], 307 }],
306 308
307 ], 309 ],
308 } 310 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698