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

Side by Side Diff: media/capture/content/android/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 unified diff | Download patch
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 import("//build/config/android/config.gni")
6 import("//build/config/android/rules.gni")
7 import("//build/config/arm.gni")
8 import("//build/config/ui.gni")
9 import("//media/media_options.gni")
10
11 assert(is_android)
12
13 source_set("android") {
14 sources = [
15 "screen_capture_jni_registrar.cc",
16 "screen_capture_jni_registrar.h",
17 ]
18 configs += [
19 "//media:media_config",
20 "//media:media_implementation",
21 ]
22 deps = [
23 ":screen_capture_jni_headers",
24 ]
25 }
26
27 generate_jni("screen_capture_jni_headers") {
28 sources = [
29 "java/src/org/chromium/media/ScreenCapture.java",
30 ]
31 jni_package = "media"
32 }
33
34 android_library("screen_capture_java") {
35 deps = [
36 "//base:base_java",
37 ]
38 java_files = [ "java/src/org/chromium/media/ScreenCapture.java" ]
39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698