| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 "new_session_cdm_result_promise.cc", | 55 "new_session_cdm_result_promise.cc", |
| 56 "new_session_cdm_result_promise.h", | 56 "new_session_cdm_result_promise.h", |
| 57 "resource_multibuffer_data_provider.cc", | 57 "resource_multibuffer_data_provider.cc", |
| 58 "resource_multibuffer_data_provider.h", | 58 "resource_multibuffer_data_provider.h", |
| 59 "texttrack_impl.cc", | 59 "texttrack_impl.cc", |
| 60 "texttrack_impl.h", | 60 "texttrack_impl.h", |
| 61 "url_index.cc", | 61 "url_index.cc", |
| 62 "url_index.h", | 62 "url_index.h", |
| 63 "video_frame_compositor.cc", | 63 "video_frame_compositor.cc", |
| 64 "video_frame_compositor.h", | 64 "video_frame_compositor.h", |
| 65 "watch_time_reporter.cc", |
| 66 "watch_time_reporter.h", |
| 65 "webaudiosourceprovider_impl.cc", | 67 "webaudiosourceprovider_impl.cc", |
| 66 "webaudiosourceprovider_impl.h", | 68 "webaudiosourceprovider_impl.h", |
| 67 "webcontentdecryptionmodule_impl.cc", | 69 "webcontentdecryptionmodule_impl.cc", |
| 68 "webcontentdecryptionmodule_impl.h", | 70 "webcontentdecryptionmodule_impl.h", |
| 69 "webcontentdecryptionmoduleaccess_impl.cc", | 71 "webcontentdecryptionmoduleaccess_impl.cc", |
| 70 "webcontentdecryptionmoduleaccess_impl.h", | 72 "webcontentdecryptionmoduleaccess_impl.h", |
| 71 "webcontentdecryptionmodulesession_impl.cc", | 73 "webcontentdecryptionmodulesession_impl.cc", |
| 72 "webcontentdecryptionmodulesession_impl.h", | 74 "webcontentdecryptionmodulesession_impl.h", |
| 73 "webencryptedmediaclient_impl.cc", | 75 "webencryptedmediaclient_impl.cc", |
| 74 "webencryptedmediaclient_impl.h", | 76 "webencryptedmediaclient_impl.h", |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 "mock_weburlloader.cc", | 140 "mock_weburlloader.cc", |
| 139 "mock_weburlloader.h", | 141 "mock_weburlloader.h", |
| 140 "multibuffer_data_source_unittest.cc", | 142 "multibuffer_data_source_unittest.cc", |
| 141 "multibuffer_unittest.cc", | 143 "multibuffer_unittest.cc", |
| 142 "resource_multibuffer_data_provider_unittest.cc", | 144 "resource_multibuffer_data_provider_unittest.cc", |
| 143 "run_all_unittests.cc", | 145 "run_all_unittests.cc", |
| 144 "test_response_generator.cc", | 146 "test_response_generator.cc", |
| 145 "test_response_generator.h", | 147 "test_response_generator.h", |
| 146 "url_index_unittest.cc", | 148 "url_index_unittest.cc", |
| 147 "video_frame_compositor_unittest.cc", | 149 "video_frame_compositor_unittest.cc", |
| 150 "watch_time_reporter_unittest.cc", |
| 148 "webaudiosourceprovider_impl_unittest.cc", | 151 "webaudiosourceprovider_impl_unittest.cc", |
| 149 "webmediaplayer_impl_unittest.cc", | 152 "webmediaplayer_impl_unittest.cc", |
| 150 ] | 153 ] |
| 151 | 154 |
| 152 if (is_android) { | 155 if (is_android) { |
| 153 deps += [ | 156 deps += [ |
| 154 "//media/base/android", | 157 "//media/base/android", |
| 155 "//media/base/android:media_java", | 158 "//media/base/android:media_java", |
| 156 "//v8:v8_external_startup_data_assets", | 159 "//v8:v8_external_startup_data_assets", |
| 157 ] | 160 ] |
| 158 } | 161 } |
| 159 } | 162 } |
| OLD | NEW |