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

Unified Diff: media/capture/BUILD.gn

Issue 2837273004: media: add video capture device for ARC++ camera HAL v3 (Closed)
Patch Set: RELAND: media: add video capture device for ARC++ camera HAL v3 Created 3 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | media/capture/video/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/capture/BUILD.gn
diff --git a/media/capture/BUILD.gn b/media/capture/BUILD.gn
index e220cba7a273c31319cbca2d7ef106256c7d0ba9..d83849f78c808ca89376de44d4e068bd79ede597 100644
--- a/media/capture/BUILD.gn
+++ b/media/capture/BUILD.gn
@@ -186,6 +186,25 @@ component("capture_lib") {
"video/blob_utils.h",
]
}
+
+ if (is_chromeos) {
+ sources += [
+ "video/chromeos/camera_device_context.cc",
+ "video/chromeos/camera_device_delegate.cc",
+ "video/chromeos/camera_hal_delegate.cc",
+ "video/chromeos/camera_metadata_utils.cc",
+ "video/chromeos/display_rotation_observer.cc",
+ "video/chromeos/pixel_format_utils.cc",
+ "video/chromeos/stream_buffer_manager.cc",
+ "video/chromeos/video_capture_device_arc_chromeos.cc",
+ "video/chromeos/video_capture_device_factory_chromeos.cc",
+ ]
+ deps += [
+ "//media/capture/video/chromeos/mojo:arc_camera3",
+ "//mojo/edk/system",
+ "//third_party/libsync",
+ ]
+ }
}
test("capture_unittests") {
@@ -225,4 +244,19 @@ test("capture_unittests") {
# TODO(jschuh): https://crbug.com/167187 fix size_t to int truncations.
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
}
+
+ if (is_chromeos) {
+ sources += [
+ "video/chromeos/camera_device_delegate_unittest.cc",
+ "video/chromeos/camera_hal_delegate_unittest.cc",
+ "video/chromeos/mock_camera_module.cc",
+ "video/chromeos/mock_video_capture_client.cc",
+ "video/chromeos/stream_buffer_manager_unittest.cc",
+ ]
+ deps += [
+ "//media/capture/video/chromeos/mojo:arc_camera3",
+ "//mojo/edk/system",
+ "//third_party/libsync",
+ ]
+ }
}
« no previous file with comments | « no previous file | media/capture/video/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698