OLD | NEW |
---|---|
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 if (is_android) { | 5 if (is_android) { |
6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
7 } | 7 } |
8 | 8 |
9 source_set("external_video_surface") { | 9 source_set("external_video_surface") { |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 12 matching lines...) Expand all Loading... | |
23 ] | 23 ] |
24 } | 24 } |
25 } | 25 } |
26 | 26 |
27 if (is_android) { | 27 if (is_android) { |
28 android_library("java") { | 28 android_library("java") { |
29 java_files = [ "android/java/src/org/chromium/components/external_video_surf ace/ExternalVideoSurfaceContainer.java" ] | 29 java_files = [ "android/java/src/org/chromium/components/external_video_surf ace/ExternalVideoSurfaceContainer.java" ] |
30 deps = [ | 30 deps = [ |
31 "//base:base_java", | 31 "//base:base_java", |
32 "//content/public/android:content_java", | 32 "//content/public/android:content_java", |
33 "//ui/android:ui_java", | |
boliu
2016/09/14 04:35:32
what does this have to do with this CL?
Tima Vaisburd
2016/09/15 00:05:03
I do not know myself. I have a build problem that
boliu
2016/09/15 05:27:41
That's not ok. Understand the issue, not patch a r
Tima Vaisburd
2016/09/16 23:59:25
Acknowledged.
| |
33 ] | 34 ] |
34 } | 35 } |
35 generate_jni("jni_headers") { | 36 generate_jni("jni_headers") { |
36 sources = [ | 37 sources = [ |
37 "android/java/src/org/chromium/components/external_video_surface/ExternalV ideoSurfaceContainer.java", | 38 "android/java/src/org/chromium/components/external_video_surface/ExternalV ideoSurfaceContainer.java", |
38 ] | 39 ] |
39 jni_package = "external_video_surface" | 40 jni_package = "external_video_surface" |
40 } | 41 } |
41 } | 42 } |
OLD | NEW |