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

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

Issue 2143903003: [WIP] Move media/capture to device/capture (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « device/capture/OWNERS ('k') | device/capture/capture_export.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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',
11 'content/animated_content_sampler.h', 11 'content/animated_content_sampler.h',
12 'content/capture_resolution_chooser.cc', 12 'content/capture_resolution_chooser.cc',
13 'content/capture_resolution_chooser.h', 13 'content/capture_resolution_chooser.h',
14 'content/feedback_signal_accumulator.h',
15 'content/screen_capture_device_core.cc', 14 'content/screen_capture_device_core.cc',
16 'content/screen_capture_device_core.h', 15 'content/screen_capture_device_core.h',
17 'content/smooth_event_sampler.cc', 16 'content/smooth_event_sampler.cc',
18 'content/smooth_event_sampler.h', 17 'content/smooth_event_sampler.h',
19 'content/thread_safe_capture_oracle.cc', 18 'content/thread_safe_capture_oracle.cc',
20 'content/thread_safe_capture_oracle.h', 19 'content/thread_safe_capture_oracle.h',
21 'content/video_capture_oracle.cc', 20 'content/video_capture_oracle.cc',
22 'content/video_capture_oracle.h', 21 'content/video_capture_oracle.h',
23 'device_monitor_mac.h', 22 'device_monitor_mac.h',
24 'device_monitor_mac.mm', 23 'device_monitor_mac.mm',
24 'feedback_signal_accumulator.h',
25 'system_message_window_win.cc', 25 'system_message_window_win.cc',
26 'system_message_window_win.h', 26 'system_message_window_win.h',
27 'video/android/video_capture_device_android.cc', 27 'video/android/video_capture_device_android.cc',
28 'video/android/video_capture_device_android.h', 28 'video/android/video_capture_device_android.h',
29 'video/android/video_capture_device_factory_android.cc', 29 'video/android/video_capture_device_factory_android.cc',
30 'video/android/video_capture_device_factory_android.h', 30 'video/android/video_capture_device_factory_android.h',
31 'video/fake_video_capture_device.cc', 31 'video/fake_video_capture_device.cc',
32 'video/fake_video_capture_device.h', 32 'video/fake_video_capture_device.h',
33 'video/fake_video_capture_device_factory.cc', 33 'video/fake_video_capture_device_factory.cc',
34 'video/fake_video_capture_device_factory.h', 34 'video/fake_video_capture_device_factory.h',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 'video/win/video_capture_device_factory_win.h', 74 'video/win/video_capture_device_factory_win.h',
75 'video/win/video_capture_device_mf_win.cc', 75 'video/win/video_capture_device_mf_win.cc',
76 'video/win/video_capture_device_mf_win.h', 76 'video/win/video_capture_device_mf_win.h',
77 'video/win/video_capture_device_win.cc', 77 'video/win/video_capture_device_win.cc',
78 'video/win/video_capture_device_win.h' 78 'video/win/video_capture_device_win.h'
79 ], 79 ],
80 80
81 'capture_unittests_sources': [ 81 'capture_unittests_sources': [
82 'content/animated_content_sampler_unittest.cc', 82 'content/animated_content_sampler_unittest.cc',
83 'content/capture_resolution_chooser_unittest.cc', 83 'content/capture_resolution_chooser_unittest.cc',
84 'content/feedback_signal_accumulator_unittest.cc',
85 'content/smooth_event_sampler_unittest.cc', 84 'content/smooth_event_sampler_unittest.cc',
86 'content/video_capture_oracle_unittest.cc', 85 'content/video_capture_oracle_unittest.cc',
86 'feedback_signal_accumulator_unittest.cc',
87 'system_message_window_win_unittest.cc', 87 'system_message_window_win_unittest.cc',
88 'video/fake_video_capture_device_unittest.cc', 88 'video/fake_video_capture_device_unittest.cc',
89 'video/mac/video_capture_device_factory_mac_unittest.mm', 89 'video/mac/video_capture_device_factory_mac_unittest.mm',
90 'video/video_capture_device_unittest.cc' 90 'video/video_capture_device_unittest.cc'
91 ], 91 ],
92 92
93 # The following files lack appropriate platform suffixes. 93 # The following files lack appropriate platform suffixes.
94 'conditions': [ 94 'conditions': [
95 ['OS=="linux" and use_udev==1', { 95 ['OS=="linux" and use_udev==1', {
96 'capture_sources': [ 96 'capture_sources': [
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 ], 301 ],
302 }, 302 },
303 ], 303 ],
304 }], 304 }],
305 ], 305 ],
306 306
307 }], 307 }],
308 308
309 ], 309 ],
310 } 310 }
OLDNEW
« no previous file with comments | « device/capture/OWNERS ('k') | device/capture/capture_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698