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

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: relocate java files, support YUV format and improve JNI operation Created 4 years, 7 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 3860b8bcae926e062aad5c93be6ec76a5b0b38b3..7b64524e29e48d2b422a3c78c81bcfb7343021c3 100644
--- a/media/capture/BUILD.gn
+++ b/media/capture/BUILD.gn
@@ -8,6 +8,8 @@ import("//testing/test.gni")
source_set("capture") {
sources = [
+ "content/android/screen_capture_machine_android.cc",
+ "content/android/screen_capture_machine_android.h",
"content/animated_content_sampler.cc",
"content/animated_content_sampler.h",
"content/capture_resolution_chooser.cc",
@@ -93,8 +95,15 @@ source_set("capture") {
]
if (is_android) {
- public_deps += [ "video/android" ]
- deps += [ "video/android:capture_jni_headers" ]
+ public_deps += [
+ "content/android",
+ "video/android",
+ ]
+ deps += [
+ "content/android:screen_capture_jni_headers",
+ "video/android:capture_jni_headers",
+ "//third_party/libyuv",
+ ]
}
if (is_mac) {

Powered by Google App Engine
This is Rietveld 408576698