Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(135)

Side by Side Diff: media/base/android/BUILD.gn

Issue 1162203009: Access unit queue for MediaCodecPlayer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed one formatting issue. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | media/base/android/access_unit_queue.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
11 assert(is_android) 11 assert(is_android)
12 12
13 source_set("android") { 13 source_set("android") {
14 sources = [ 14 sources = [
15 "access_unit_queue.cc",
16 "access_unit_queue.h",
15 "audio_decoder_job.cc", 17 "audio_decoder_job.cc",
16 "audio_decoder_job.h", 18 "audio_decoder_job.h",
17 "browser_cdm_factory_android.cc", 19 "browser_cdm_factory_android.cc",
18 "browser_cdm_factory_android.h", 20 "browser_cdm_factory_android.h",
19 "demuxer_android.h", 21 "demuxer_android.h",
20 "demuxer_stream_player_params.cc", 22 "demuxer_stream_player_params.cc",
21 "demuxer_stream_player_params.h", 23 "demuxer_stream_player_params.h",
22 "media_client_android.cc", 24 "media_client_android.cc",
23 "media_client_android.h", 25 "media_client_android.h",
24 "media_codec_bridge.cc", 26 "media_codec_bridge.cc",
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 "//media:shared_memory_support", 62 "//media:shared_memory_support",
61 "//third_party/widevine/cdm:version_h", 63 "//third_party/widevine/cdm:version_h",
62 "//ui/gl", 64 "//ui/gl",
63 "//url", 65 "//url",
64 ] 66 ]
65 } 67 }
66 68
67 source_set("unittests") { 69 source_set("unittests") {
68 testonly = true 70 testonly = true
69 sources = [ 71 sources = [
72 "access_unit_queue_unittest.cc",
70 "media_codec_bridge_unittest.cc", 73 "media_codec_bridge_unittest.cc",
71 "media_drm_bridge_unittest.cc", 74 "media_drm_bridge_unittest.cc",
72 "media_source_player_unittest.cc", 75 "media_source_player_unittest.cc",
73 ] 76 ]
74 deps = [ 77 deps = [
75 ":android", 78 ":android",
76 "//media/base:test_support", 79 "//media/base:test_support",
77 "//testing/gmock", 80 "//testing/gmock",
78 "//testing/gtest", 81 "//testing/gtest",
79 "//third_party/widevine/cdm:version_h", 82 "//third_party/widevine/cdm:version_h",
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 118
116 android_library("media_java") { 119 android_library("media_java") {
117 deps = [ 120 deps = [
118 "//base:base_java", 121 "//base:base_java",
119 ] 122 ]
120 123
121 srcjar_deps = [ ":media_java_enums_srcjar" ] 124 srcjar_deps = [ ":media_java_enums_srcjar" ]
122 125
123 DEPRECATED_java_in_dir = "java/src" 126 DEPRECATED_java_in_dir = "java/src"
124 } 127 }
OLDNEW
« no previous file with comments | « no previous file | media/base/android/access_unit_queue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698