| 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_statistics.cc", |
| 56 "media_statistics.h", |
| 55 "media_task_runner.cc", | 57 "media_task_runner.cc", |
| 56 "media_task_runner.h", | 58 "media_task_runner.h", |
| 57 "media_url_interceptor.h", | 59 "media_url_interceptor.h", |
| 58 "video_decoder_job.cc", | 60 "video_decoder_job.cc", |
| 59 "video_decoder_job.h", | 61 "video_decoder_job.h", |
| 60 "webaudio_media_codec_bridge.cc", | 62 "webaudio_media_codec_bridge.cc", |
| 61 "webaudio_media_codec_bridge.h", | 63 "webaudio_media_codec_bridge.h", |
| 62 "webaudio_media_codec_info.h", | 64 "webaudio_media_codec_info.h", |
| 63 ] | 65 ] |
| 64 configs += [ | 66 configs += [ |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 | 133 |
| 132 android_library("media_java") { | 134 android_library("media_java") { |
| 133 deps = [ | 135 deps = [ |
| 134 "//base:base_java", | 136 "//base:base_java", |
| 135 ] | 137 ] |
| 136 | 138 |
| 137 srcjar_deps = [ ":media_java_enums_srcjar" ] | 139 srcjar_deps = [ ":media_java_enums_srcjar" ] |
| 138 | 140 |
| 139 DEPRECATED_java_in_dir = "java/src" | 141 DEPRECATED_java_in_dir = "java/src" |
| 140 } | 142 } |
| OLD | NEW |