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("//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 |
11 deps = [ | 11 deps = [ |
12 "//base", | 12 "//base", |
13 "//cc", | 13 "//cc", |
14 "//cc/blink", | 14 "//cc/blink", |
| 15 "//gpu", |
15 "//gpu/blink", | 16 "//gpu/blink", |
16 "//media", | 17 "//media", |
17 "//media:shared_memory_support", | 18 "//media:shared_memory_support", |
18 "//net", | 19 "//net", |
19 "//skia", | 20 "//skia", |
20 "//third_party/WebKit/public:blink", | 21 "//third_party/WebKit/public:blink", |
21 "//ui/gfx", | 22 "//ui/gfx", |
22 "//ui/gfx/geometry", | 23 "//ui/gfx/geometry", |
23 "//url", | 24 "//url", |
24 ] | 25 ] |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 "webcontentdecryptionmodule_impl.cc", | 68 "webcontentdecryptionmodule_impl.cc", |
68 "webcontentdecryptionmodule_impl.h", | 69 "webcontentdecryptionmodule_impl.h", |
69 "webcontentdecryptionmoduleaccess_impl.cc", | 70 "webcontentdecryptionmoduleaccess_impl.cc", |
70 "webcontentdecryptionmoduleaccess_impl.h", | 71 "webcontentdecryptionmoduleaccess_impl.h", |
71 "webcontentdecryptionmodulesession_impl.cc", | 72 "webcontentdecryptionmodulesession_impl.cc", |
72 "webcontentdecryptionmodulesession_impl.h", | 73 "webcontentdecryptionmodulesession_impl.h", |
73 "webencryptedmediaclient_impl.cc", | 74 "webencryptedmediaclient_impl.cc", |
74 "webencryptedmediaclient_impl.h", | 75 "webencryptedmediaclient_impl.h", |
75 "webinbandtexttrack_impl.cc", | 76 "webinbandtexttrack_impl.cc", |
76 "webinbandtexttrack_impl.h", | 77 "webinbandtexttrack_impl.h", |
| 78 "webmediaplayer_cast_android.cc", |
| 79 "webmediaplayer_cast_android.h", |
77 "webmediaplayer_delegate.h", | 80 "webmediaplayer_delegate.h", |
78 "webmediaplayer_params.cc", | 81 "webmediaplayer_params.cc", |
79 "webmediaplayer_params.h", | 82 "webmediaplayer_params.h", |
80 "webmediaplayer_util.cc", | 83 "webmediaplayer_util.cc", |
81 "webmediaplayer_util.h", | 84 "webmediaplayer_util.h", |
82 "webmediasource_impl.cc", | 85 "webmediasource_impl.cc", |
83 "webmediasource_impl.h", | 86 "webmediasource_impl.h", |
84 "websourcebuffer_impl.cc", | 87 "websourcebuffer_impl.cc", |
85 "websourcebuffer_impl.h", | 88 "websourcebuffer_impl.h", |
86 ] | 89 ] |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 } | 152 } |
150 | 153 |
151 # TODO(GYP): Delete this after we've converted everything to GN. | 154 # TODO(GYP): Delete this after we've converted everything to GN. |
152 # The _run targets exist only for compatibility w/ GYP. | 155 # The _run targets exist only for compatibility w/ GYP. |
153 group("media_blink_unittests_run") { | 156 group("media_blink_unittests_run") { |
154 testonly = true | 157 testonly = true |
155 deps = [ | 158 deps = [ |
156 ":media_blink_unittests", | 159 ":media_blink_unittests", |
157 ] | 160 ] |
158 } | 161 } |
OLD | NEW |