| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 "media_player_android.h", | 45 "media_player_android.h", |
| 46 "media_player_bridge.cc", | 46 "media_player_bridge.cc", |
| 47 "media_player_bridge.h", | 47 "media_player_bridge.h", |
| 48 "media_player_listener.cc", | 48 "media_player_listener.cc", |
| 49 "media_player_listener.h", | 49 "media_player_listener.h", |
| 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_task_runner.cc", |
| 56 "media_task_runner.h", |
| 55 "media_url_interceptor.h", | 57 "media_url_interceptor.h", |
| 56 "video_decoder_job.cc", | 58 "video_decoder_job.cc", |
| 57 "video_decoder_job.h", | 59 "video_decoder_job.h", |
| 58 "webaudio_media_codec_bridge.cc", | 60 "webaudio_media_codec_bridge.cc", |
| 59 "webaudio_media_codec_bridge.h", | 61 "webaudio_media_codec_bridge.h", |
| 60 "webaudio_media_codec_info.h", | 62 "webaudio_media_codec_info.h", |
| 61 ] | 63 ] |
| 62 configs += [ | 64 configs += [ |
| 63 "//media:media_config", | 65 "//media:media_config", |
| 64 "//media:media_implementation", | 66 "//media:media_implementation", |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 | 131 |
| 130 android_library("media_java") { | 132 android_library("media_java") { |
| 131 deps = [ | 133 deps = [ |
| 132 "//base:base_java", | 134 "//base:base_java", |
| 133 ] | 135 ] |
| 134 | 136 |
| 135 srcjar_deps = [ ":media_java_enums_srcjar" ] | 137 srcjar_deps = [ ":media_java_enums_srcjar" ] |
| 136 | 138 |
| 137 DEPRECATED_java_in_dir = "java/src" | 139 DEPRECATED_java_in_dir = "java/src" |
| 138 } | 140 } |
| OLD | NEW |