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

Side by Side Diff: components/external_video_surface.gypi

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/components.gyp ('k') | components/external_video_surface/BUILD.gn » ('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 {
6 'variables': {
7 'chromium_code': 1
8 },
9 'targets': [
10 {
11 'target_name': 'external_video_surface',
12 'type': 'static_library',
13 'dependencies': [
14 '../base/base.gyp:base',
15 '../content/content.gyp:content_browser',
16 'external_video_surface_jni_headers',
17 ],
18 'sources': [
19 'external_video_surface/browser/android/external_video_surface_container _impl.cc',
20 'external_video_surface/browser/android/external_video_surface_container _impl.h',
21 'external_video_surface/component_jni_registrar.cc',
22 'external_video_surface/component_jni_registrar.h',
23 ],
24 },
25 {
26 'target_name': 'external_video_surface_java',
27 'type': 'none',
28 'dependencies': [
29 '../base/base.gyp:base',
30 '../content/content.gyp:content_java',
31 ],
32 'variables': {
33 'java_in_dir': 'external_video_surface/android/java',
34 },
35 'includes': [ '../build/java.gypi' ],
36 },
37 {
38 'target_name': 'external_video_surface_jni_headers',
39 'type': 'none',
40 'sources': [
41 'external_video_surface/android/java/src/org/chromium/components/externa l_video_surface/ExternalVideoSurfaceContainer.java',
42 ],
43 'variables': {
44 'jni_gen_package': 'external_video_surface',
45 },
46 'includes': [ '../build/jni_generator.gypi' ],
47 },
48 ],
49 }
OLDNEW
« no previous file with comments | « components/components.gyp ('k') | components/external_video_surface/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698