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

Unified Diff: media/capture/BUILD.gn

Issue 1917023003: ScreenCapture for Android phase1, part I (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
Index: media/capture/BUILD.gn
diff --git a/media/capture/BUILD.gn b/media/capture/BUILD.gn
index af73e9016ae1fe040ddd705a9c36d3e994e820dd..594d9f8d9854e223d8af77e23920918a02151288 100644
--- a/media/capture/BUILD.gn
+++ b/media/capture/BUILD.gn
@@ -93,8 +93,19 @@ source_set("capture") {
]
if (is_android) {
+ sources += [
+ "content/android/screen_capture_device_android.cc",
+ "content/android/screen_capture_device_android.h",
+ "content/android/screen_capture_factory_android.cc",
+ "content/android/screen_capture_factory_android.h",
+ "content/android/screen_capture_machine_android.cc",
+ "content/android/screen_capture_machine_android.h",
+ ]
public_deps += [ "video/android" ]
- deps += [ "video/android:capture_jni_headers" ]
+ deps += [
+ "video/android:capture_jni_headers",
+ "//third_party/libyuv",
+ ]
}
if (is_mac) {

Powered by Google App Engine
This is Rietveld 408576698