OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
7 import("//build/config/arm.gni") | 7 import("//build/config/arm.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
10 | 10 |
(...skipping 21 matching lines...) Expand all Loading... |
32 "media_player_bridge.cc", | 32 "media_player_bridge.cc", |
33 "media_player_bridge.h", | 33 "media_player_bridge.h", |
34 "media_player_listener.cc", | 34 "media_player_listener.cc", |
35 "media_player_listener.h", | 35 "media_player_listener.h", |
36 "media_player_manager.h", | 36 "media_player_manager.h", |
37 "media_resource_getter.cc", | 37 "media_resource_getter.cc", |
38 "media_resource_getter.h", | 38 "media_resource_getter.h", |
39 "media_source_player.cc", | 39 "media_source_player.cc", |
40 "media_source_player.h", | 40 "media_source_player.h", |
41 "media_url_interceptor.h", | 41 "media_url_interceptor.h", |
| 42 "mt/player.cc", |
| 43 "mt/player.h", |
42 "video_decoder_job.cc", | 44 "video_decoder_job.cc", |
43 "video_decoder_job.h", | 45 "video_decoder_job.h", |
44 "webaudio_media_codec_bridge.cc", | 46 "webaudio_media_codec_bridge.cc", |
45 "webaudio_media_codec_bridge.h", | 47 "webaudio_media_codec_bridge.h", |
46 "webaudio_media_codec_info.h", | 48 "webaudio_media_codec_info.h", |
47 ] | 49 ] |
48 configs += [ "//media:media_config" ] | 50 configs += [ "//media:media_config" ] |
49 deps = [ | 51 deps = [ |
50 ":media_jni_headers", | 52 ":media_jni_headers", |
51 "//media:shared_memory_support", | 53 "//media:shared_memory_support", |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 | 111 |
110 android_library("media_java") { | 112 android_library("media_java") { |
111 deps = [ | 113 deps = [ |
112 "//base:base_java", | 114 "//base:base_java", |
113 ] | 115 ] |
114 | 116 |
115 srcjar_deps = [ ":media_java_enums_srcjar" ] | 117 srcjar_deps = [ ":media_java_enums_srcjar" ] |
116 | 118 |
117 DEPRECATED_java_in_dir = "java/src" | 119 DEPRECATED_java_in_dir = "java/src" |
118 } | 120 } |
OLD | NEW |