| OLD | NEW |
| 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//media/media_options.gni") | 6 import("//media/media_options.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 group("capture") { | 9 group("capture") { |
| 10 public_deps = [ | 10 public_deps = [ |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "content/capture_resolution_chooser.cc", | 42 "content/capture_resolution_chooser.cc", |
| 43 "content/capture_resolution_chooser.h", | 43 "content/capture_resolution_chooser.h", |
| 44 "content/screen_capture_device_core.cc", | 44 "content/screen_capture_device_core.cc", |
| 45 "content/screen_capture_device_core.h", | 45 "content/screen_capture_device_core.h", |
| 46 "content/smooth_event_sampler.cc", | 46 "content/smooth_event_sampler.cc", |
| 47 "content/smooth_event_sampler.h", | 47 "content/smooth_event_sampler.h", |
| 48 "content/thread_safe_capture_oracle.cc", | 48 "content/thread_safe_capture_oracle.cc", |
| 49 "content/thread_safe_capture_oracle.h", | 49 "content/thread_safe_capture_oracle.h", |
| 50 "content/video_capture_oracle.cc", | 50 "content/video_capture_oracle.cc", |
| 51 "content/video_capture_oracle.h", | 51 "content/video_capture_oracle.h", |
| 52 "video/chromeos/arc_camera3_service.cc", |
| 52 "video/chromeos/camera_device_context.cc", | 53 "video/chromeos/camera_device_context.cc", |
| 53 "video/chromeos/camera_device_delegate.cc", | 54 "video/chromeos/camera_device_delegate.cc", |
| 54 "video/chromeos/camera_hal_delegate.cc", | 55 "video/chromeos/camera_hal_delegate.cc", |
| 55 "video/chromeos/camera_metadata_utils.cc", | 56 "video/chromeos/camera_metadata_utils.cc", |
| 56 "video/chromeos/display_rotation_observer.cc", | 57 "video/chromeos/display_rotation_observer.cc", |
| 57 "video/chromeos/pixel_format_utils.cc", | 58 "video/chromeos/pixel_format_utils.cc", |
| 58 "video/chromeos/stream_buffer_manager.cc", | 59 "video/chromeos/stream_buffer_manager.cc", |
| 59 "video/chromeos/video_capture_device_arc_chromeos.cc", | 60 "video/chromeos/video_capture_device_arc_chromeos.cc", |
| 60 "video/chromeos/video_capture_device_factory_chromeos.cc", | 61 "video/chromeos/video_capture_device_factory_chromeos.cc", |
| 61 "video/fake_video_capture_device.cc", | 62 "video/fake_video_capture_device.cc", |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 "video/chromeos/camera_hal_delegate_unittest.cc", | 250 "video/chromeos/camera_hal_delegate_unittest.cc", |
| 250 "video/chromeos/stream_buffer_manager_unittest.cc", | 251 "video/chromeos/stream_buffer_manager_unittest.cc", |
| 251 ] | 252 ] |
| 252 deps += [ | 253 deps += [ |
| 253 "//media/capture/video/chromeos/mojo:arc_camera3", | 254 "//media/capture/video/chromeos/mojo:arc_camera3", |
| 254 "//mojo/edk/system", | 255 "//mojo/edk/system", |
| 255 "//third_party/libsync", | 256 "//third_party/libsync", |
| 256 ] | 257 ] |
| 257 } | 258 } |
| 258 } | 259 } |
| OLD | NEW |