| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "lru.h", | 48 "lru.h", |
| 49 "media_blink_export.h", | 49 "media_blink_export.h", |
| 50 "multibuffer.cc", | 50 "multibuffer.cc", |
| 51 "multibuffer.h", | 51 "multibuffer.h", |
| 52 "multibuffer_data_source.cc", | 52 "multibuffer_data_source.cc", |
| 53 "multibuffer_data_source.h", | 53 "multibuffer_data_source.h", |
| 54 "multibuffer_reader.cc", | 54 "multibuffer_reader.cc", |
| 55 "multibuffer_reader.h", | 55 "multibuffer_reader.h", |
| 56 "new_session_cdm_result_promise.cc", | 56 "new_session_cdm_result_promise.cc", |
| 57 "new_session_cdm_result_promise.h", | 57 "new_session_cdm_result_promise.h", |
| 58 "pipeline_state.cc", |
| 59 "pipeline_state.h", |
| 58 "resource_multibuffer_data_provider.cc", | 60 "resource_multibuffer_data_provider.cc", |
| 59 "resource_multibuffer_data_provider.h", | 61 "resource_multibuffer_data_provider.h", |
| 60 "texttrack_impl.cc", | 62 "texttrack_impl.cc", |
| 61 "texttrack_impl.h", | 63 "texttrack_impl.h", |
| 62 "url_index.cc", | 64 "url_index.cc", |
| 63 "url_index.h", | 65 "url_index.h", |
| 64 "video_frame_compositor.cc", | 66 "video_frame_compositor.cc", |
| 65 "video_frame_compositor.h", | 67 "video_frame_compositor.h", |
| 66 "webaudiosourceprovider_impl.cc", | 68 "webaudiosourceprovider_impl.cc", |
| 67 "webaudiosourceprovider_impl.h", | 69 "webaudiosourceprovider_impl.h", |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 } | 158 } |
| 157 | 159 |
| 158 # TODO(GYP): Delete this after we've converted everything to GN. | 160 # TODO(GYP): Delete this after we've converted everything to GN. |
| 159 # The _run targets exist only for compatibility w/ GYP. | 161 # The _run targets exist only for compatibility w/ GYP. |
| 160 group("media_blink_unittests_run") { | 162 group("media_blink_unittests_run") { |
| 161 testonly = true | 163 testonly = true |
| 162 deps = [ | 164 deps = [ |
| 163 ":media_blink_unittests", | 165 ":media_blink_unittests", |
| 164 ] | 166 ] |
| 165 } | 167 } |
| OLD | NEW |