| 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 23 matching lines...) Expand all Loading... |
| 34 "buffered_data_source_host_impl.h", | 34 "buffered_data_source_host_impl.h", |
| 35 "buffered_resource_loader.cc", | 35 "buffered_resource_loader.cc", |
| 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 "interval_map.h", |
| 44 "key_system_config_selector.cc", | 45 "key_system_config_selector.cc", |
| 45 "key_system_config_selector.h", | 46 "key_system_config_selector.h", |
| 47 "lru.h", |
| 46 "media_blink_export.h", | 48 "media_blink_export.h", |
| 49 "multibuffer.cc", |
| 50 "multibuffer.h", |
| 47 "new_session_cdm_result_promise.cc", | 51 "new_session_cdm_result_promise.cc", |
| 48 "new_session_cdm_result_promise.h", | 52 "new_session_cdm_result_promise.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", |
| (...skipping 77 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 |