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.h", |
60 "video_decoder_job.cc", | 61 "video_decoder_job.cc", |
61 "video_decoder_job.h", | 62 "video_decoder_job.h", |
62 "webaudio_media_codec_bridge.cc", | 63 "webaudio_media_codec_bridge.cc", |
63 "webaudio_media_codec_bridge.h", | 64 "webaudio_media_codec_bridge.h", |
64 "webaudio_media_codec_info.h", | 65 "webaudio_media_codec_info.h", |
65 ] | 66 ] |
66 configs += [ | 67 configs += [ |
67 "//media:media_config", | 68 "//media:media_config", |
68 "//media:media_implementation", | 69 "//media:media_implementation", |
69 ] | 70 ] |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 | 131 |
131 android_library("media_java") { | 132 android_library("media_java") { |
132 deps = [ | 133 deps = [ |
133 "//base:base_java", | 134 "//base:base_java", |
134 ] | 135 ] |
135 | 136 |
136 srcjar_deps = [ ":media_java_enums_srcjar" ] | 137 srcjar_deps = [ ":media_java_enums_srcjar" ] |
137 | 138 |
138 DEPRECATED_java_in_dir = "java/src" | 139 DEPRECATED_java_in_dir = "java/src" |
139 } | 140 } |
OLD | NEW |