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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 "media_player_manager.h", | 50 "media_player_manager.h", |
51 "media_resource_getter.cc", | 51 "media_resource_getter.cc", |
52 "media_resource_getter.h", | 52 "media_resource_getter.h", |
53 "media_source_player.cc", | 53 "media_source_player.cc", |
54 "media_source_player.h", | 54 "media_source_player.h", |
55 "media_statistics.cc", | 55 "media_statistics.cc", |
56 "media_statistics.h", | 56 "media_statistics.h", |
57 "media_task_runner.cc", | 57 "media_task_runner.cc", |
58 "media_task_runner.h", | 58 "media_task_runner.h", |
59 "media_url_interceptor.h", | 59 "media_url_interceptor.h", |
| 60 "provision_fetcher.cc", |
| 61 "provision_fetcher.h", |
60 "video_decoder_job.cc", | 62 "video_decoder_job.cc", |
61 "video_decoder_job.h", | 63 "video_decoder_job.h", |
62 "webaudio_media_codec_bridge.cc", | 64 "webaudio_media_codec_bridge.cc", |
63 "webaudio_media_codec_bridge.h", | 65 "webaudio_media_codec_bridge.h", |
64 "webaudio_media_codec_info.h", | 66 "webaudio_media_codec_info.h", |
65 ] | 67 ] |
66 configs += [ | 68 configs += [ |
67 "//media:media_config", | 69 "//media:media_config", |
68 "//media:media_implementation", | 70 "//media:media_implementation", |
69 ] | 71 ] |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 | 136 |
135 android_library("media_java") { | 137 android_library("media_java") { |
136 deps = [ | 138 deps = [ |
137 "//base:base_java", | 139 "//base:base_java", |
138 ] | 140 ] |
139 | 141 |
140 srcjar_deps = [ ":media_java_enums_srcjar" ] | 142 srcjar_deps = [ ":media_java_enums_srcjar" ] |
141 | 143 |
142 DEPRECATED_java_in_dir = "java/src" | 144 DEPRECATED_java_in_dir = "java/src" |
143 } | 145 } |
OLD | NEW |