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

Side by Side Diff: media/blink/BUILD.gn

Issue 1567123002: Support CAST+WMPI on android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments addressed + build fix Created 4 years, 11 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
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("//media/media_options.gni") 5 import("//media/media_options.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 component("blink") { 8 component("blink") {
9 output_name = "media_blink" 9 output_name = "media_blink"
10 10
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 "webcontentdecryptionmodulesession_impl.h", 72 "webcontentdecryptionmodulesession_impl.h",
73 "webencryptedmediaclient_impl.cc", 73 "webencryptedmediaclient_impl.cc",
74 "webencryptedmediaclient_impl.h", 74 "webencryptedmediaclient_impl.h",
75 "webinbandtexttrack_impl.cc", 75 "webinbandtexttrack_impl.cc",
76 "webinbandtexttrack_impl.h", 76 "webinbandtexttrack_impl.h",
77 "webmediaplayer_delegate.h", 77 "webmediaplayer_delegate.h",
78 "webmediaplayer_params.cc", 78 "webmediaplayer_params.cc",
79 "webmediaplayer_params.h", 79 "webmediaplayer_params.h",
80 "webmediaplayer_util.cc", 80 "webmediaplayer_util.cc",
81 "webmediaplayer_util.h", 81 "webmediaplayer_util.h",
82 "webmediasource_cast_android.cc",
DaleCurtis 2016/01/12 23:21:53 wmp?
hubbe 2016/01/13 00:11:56 Oops, fixed.
83 "webmediasource_cast_android.h",
82 "webmediasource_impl.cc", 84 "webmediasource_impl.cc",
83 "webmediasource_impl.h", 85 "webmediasource_impl.h",
84 "websourcebuffer_impl.cc", 86 "websourcebuffer_impl.cc",
85 "websourcebuffer_impl.h", 87 "websourcebuffer_impl.h",
86 ] 88 ]
87 89
88 if (media_use_ffmpeg || !is_android) { 90 if (media_use_ffmpeg || !is_android) {
89 sources += [ 91 sources += [
90 "encrypted_media_player_support.cc", 92 "encrypted_media_player_support.cc",
91 "encrypted_media_player_support.h", 93 "encrypted_media_player_support.h",
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 } 151 }
150 152
151 # TODO(GYP): Delete this after we've converted everything to GN. 153 # TODO(GYP): Delete this after we've converted everything to GN.
152 # The _run targets exist only for compatibility w/ GYP. 154 # The _run targets exist only for compatibility w/ GYP.
153 group("media_blink_unittests_run") { 155 group("media_blink_unittests_run") {
154 testonly = true 156 testonly = true
155 deps = [ 157 deps = [
156 ":media_blink_unittests", 158 ":media_blink_unittests",
157 ] 159 ]
158 } 160 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698