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

Unified Diff: media/capture/BUILD.gn

Issue 2354783002: ImageCapture: Implement takePhoto() for Windows (Closed)
Patch Set: xianglu@ comments Created 4 years, 3 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/blob_utils.h » ('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 acc22fb43f14c22593321035722b61ac4790437d..a6340f5cacf14fd78c861606b6f63628e4fb2720 100644
--- a/media/capture/BUILD.gn
+++ b/media/capture/BUILD.gn
@@ -133,7 +133,11 @@ component("capture") {
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
}
- if (is_linux || is_chromeos) {
+ if (is_linux || is_chromeos || is_win) {
+ sources += [
+ "video/blob_utils.cc",
+ "video/blob_utils.h",
+ ]
deps += [ "//third_party/libyuv" ]
}
}
« no previous file with comments | « no previous file | media/capture/video/blob_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698