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

Side by Side Diff: components/external_video_surface/BUILD.gn

Issue 1123993002: Componentizes external_video_surface to reduce webview/Cast duplication. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: java DEPS, round 2 Created 5 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
« no previous file with comments | « components/external_video_surface.gypi ('k') | components/external_video_surface/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2015 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 if (is_android) {
6 import("//build/config/android/rules.gni")
7 }
8
9 static_library("external_video_surface") {
10 if (is_android) {
11 sources += [
12 "browser/android/external_video_surface_container_impl.cc",
13 "browser/android/external_video_surface_container_impl.h",
14 "component_jni_registrar.cc",
15 "component_jni_registrar.h",
16 ]
17
18 deps = [
19 ":jni_headers",
20 "//base",
21 "//content/public/browser",
22 ]
23 }
24 }
25
26 if (is_android) {
27 android_library("java") {
28 java_files = [ "android/java/src/org/chromium/components/external_video_surf ace/ExternalVideoSurfaceContainer.java" ]
29 deps = [
30 "//base:base_java",
31 "//content/public/android:content_java",
32 ]
33 }
34 generate_jni("jni_headers") {
35 sources = [
36 "android/java/src/org/chromium/components/external_video_surface/ExternalV ideoSurfaceContainer.java",
37 ]
38 jni_package = "external_video_surface"
39 }
40 }
OLDNEW
« no previous file with comments | « components/external_video_surface.gypi ('k') | components/external_video_surface/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698