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 |
(...skipping 25 matching lines...) Expand all Loading... | |
36 "buffered_resource_loader.h", | 36 "buffered_resource_loader.h", |
37 "cache_util.cc", | 37 "cache_util.cc", |
38 "cache_util.h", | 38 "cache_util.h", |
39 "cdm_result_promise.h", | 39 "cdm_result_promise.h", |
40 "cdm_result_promise_helper.cc", | 40 "cdm_result_promise_helper.cc", |
41 "cdm_result_promise_helper.h", | 41 "cdm_result_promise_helper.h", |
42 "cdm_session_adapter.cc", | 42 "cdm_session_adapter.cc", |
43 "cdm_session_adapter.h", | 43 "cdm_session_adapter.h", |
44 "key_system_config_selector.cc", | 44 "key_system_config_selector.cc", |
45 "key_system_config_selector.h", | 45 "key_system_config_selector.h", |
46 "lru.h", | |
DaleCurtis
2015/11/11 23:48:17
Presumably lru.h, rangemap.h will be added in the
hubbe
2015/11/12 22:18:37
I'm adding them here since since they are now used
| |
46 "media_blink_export.h", | 47 "media_blink_export.h", |
48 "multibuffer.cc", | |
49 "multibuffer.h", | |
47 "new_session_cdm_result_promise.cc", | 50 "new_session_cdm_result_promise.cc", |
48 "new_session_cdm_result_promise.h", | 51 "new_session_cdm_result_promise.h", |
52 "rangemap.h", | |
49 "texttrack_impl.cc", | 53 "texttrack_impl.cc", |
50 "texttrack_impl.h", | 54 "texttrack_impl.h", |
51 "video_frame_compositor.cc", | 55 "video_frame_compositor.cc", |
52 "video_frame_compositor.h", | 56 "video_frame_compositor.h", |
53 "webaudiosourceprovider_impl.cc", | 57 "webaudiosourceprovider_impl.cc", |
54 "webaudiosourceprovider_impl.h", | 58 "webaudiosourceprovider_impl.h", |
55 "webcontentdecryptionmodule_impl.cc", | 59 "webcontentdecryptionmodule_impl.cc", |
56 "webcontentdecryptionmodule_impl.h", | 60 "webcontentdecryptionmodule_impl.h", |
57 "webcontentdecryptionmoduleaccess_impl.cc", | 61 "webcontentdecryptionmoduleaccess_impl.cc", |
58 "webcontentdecryptionmoduleaccess_impl.h", | 62 "webcontentdecryptionmoduleaccess_impl.h", |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
134 } | 138 } |
135 | 139 |
136 # TODO(GYP): Delete this after we've converted everything to GN. | 140 # TODO(GYP): Delete this after we've converted everything to GN. |
137 # The _run targets exist only for compatibility w/ GYP. | 141 # The _run targets exist only for compatibility w/ GYP. |
138 group("media_blink_unittests_run") { | 142 group("media_blink_unittests_run") { |
139 testonly = true | 143 testonly = true |
140 deps = [ | 144 deps = [ |
141 ":media_blink_unittests", | 145 ":media_blink_unittests", |
142 ] | 146 ] |
143 } | 147 } |
OLD | NEW |