| 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 10 matching lines...) Expand all Loading... |
| 21 "//ui/gfx", | 21 "//ui/gfx", |
| 22 "//ui/gfx/geometry", | 22 "//ui/gfx/geometry", |
| 23 "//url", | 23 "//url", |
| 24 ] | 24 ] |
| 25 | 25 |
| 26 defines = [ "MEDIA_BLINK_IMPLEMENTATION" ] | 26 defines = [ "MEDIA_BLINK_IMPLEMENTATION" ] |
| 27 | 27 |
| 28 sources = [ | 28 sources = [ |
| 29 "active_loader.cc", | 29 "active_loader.cc", |
| 30 "active_loader.h", | 30 "active_loader.h", |
| 31 "buffered_data_source.cc", | |
| 32 "buffered_data_source.h", | |
| 33 "buffered_data_source_host_impl.cc", | 31 "buffered_data_source_host_impl.cc", |
| 34 "buffered_data_source_host_impl.h", | 32 "buffered_data_source_host_impl.h", |
| 35 "buffered_resource_loader.cc", | |
| 36 "buffered_resource_loader.h", | |
| 37 "cache_util.cc", | 33 "cache_util.cc", |
| 38 "cache_util.h", | 34 "cache_util.h", |
| 39 "cdm_result_promise.h", | 35 "cdm_result_promise.h", |
| 40 "cdm_result_promise_helper.cc", | 36 "cdm_result_promise_helper.cc", |
| 41 "cdm_result_promise_helper.h", | 37 "cdm_result_promise_helper.h", |
| 42 "cdm_session_adapter.cc", | 38 "cdm_session_adapter.cc", |
| 43 "cdm_session_adapter.h", | 39 "cdm_session_adapter.h", |
| 44 "interval_map.h", | 40 "interval_map.h", |
| 45 "key_system_config_selector.cc", | 41 "key_system_config_selector.cc", |
| 46 "key_system_config_selector.h", | 42 "key_system_config_selector.h", |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 "//url", | 119 "//url", |
| 124 ] | 120 ] |
| 125 | 121 |
| 126 configs += [ | 122 configs += [ |
| 127 "//build/config/compiler:no_size_t_to_int_warning", | 123 "//build/config/compiler:no_size_t_to_int_warning", |
| 128 "//v8:external_startup_data", | 124 "//v8:external_startup_data", |
| 129 ] | 125 ] |
| 130 | 126 |
| 131 sources = [ | 127 sources = [ |
| 132 "buffered_data_source_host_impl_unittest.cc", | 128 "buffered_data_source_host_impl_unittest.cc", |
| 133 "buffered_data_source_unittest.cc", | |
| 134 "buffered_resource_loader_unittest.cc", | |
| 135 "cache_util_unittest.cc", | 129 "cache_util_unittest.cc", |
| 136 "interval_map_unittest.cc", | 130 "interval_map_unittest.cc", |
| 137 "key_system_config_selector_unittest.cc", | 131 "key_system_config_selector_unittest.cc", |
| 138 "lru_unittest.cc", | 132 "lru_unittest.cc", |
| 139 "mock_webframeclient.h", | 133 "mock_webframeclient.h", |
| 140 "mock_weburlloader.cc", | 134 "mock_weburlloader.cc", |
| 141 "mock_weburlloader.h", | 135 "mock_weburlloader.h", |
| 142 "multibuffer_data_source_unittest.cc", | 136 "multibuffer_data_source_unittest.cc", |
| 143 "multibuffer_unittest.cc", | 137 "multibuffer_unittest.cc", |
| 144 "resource_multibuffer_data_provider_unittest.cc", | 138 "resource_multibuffer_data_provider_unittest.cc", |
| 145 "run_all_unittests.cc", | 139 "run_all_unittests.cc", |
| 146 "test_response_generator.cc", | 140 "test_response_generator.cc", |
| 147 "test_response_generator.h", | 141 "test_response_generator.h", |
| 148 "url_index_unittest.cc", | 142 "url_index_unittest.cc", |
| 149 "video_frame_compositor_unittest.cc", | 143 "video_frame_compositor_unittest.cc", |
| 150 "watch_time_reporter_unittest.cc", | 144 "watch_time_reporter_unittest.cc", |
| 151 "webaudiosourceprovider_impl_unittest.cc", | 145 "webaudiosourceprovider_impl_unittest.cc", |
| 152 "webmediaplayer_impl_unittest.cc", | 146 "webmediaplayer_impl_unittest.cc", |
| 153 ] | 147 ] |
| 154 | 148 |
| 155 if (is_android) { | 149 if (is_android) { |
| 156 deps += [ | 150 deps += [ |
| 157 "//media/base/android", | 151 "//media/base/android", |
| 158 "//media/base/android:media_java", | 152 "//media/base/android:media_java", |
| 159 "//v8:v8_external_startup_data_assets", | 153 "//v8:v8_external_startup_data_assets", |
| 160 ] | 154 ] |
| 161 } | 155 } |
| 162 } | 156 } |
| OLD | NEW |