| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 component("blink") { | 7 component("blink") { |
| 8 output_name = "media_blink" | 8 output_name = "media_blink" |
| 9 | 9 |
| 10 deps = [ | 10 deps = [ |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 "cdm_result_promise_helper.h", | 40 "cdm_result_promise_helper.h", |
| 41 "cdm_session_adapter.cc", | 41 "cdm_session_adapter.cc", |
| 42 "cdm_session_adapter.h", | 42 "cdm_session_adapter.h", |
| 43 "encrypted_media_player_support.cc", | 43 "encrypted_media_player_support.cc", |
| 44 "encrypted_media_player_support.h", | 44 "encrypted_media_player_support.h", |
| 45 "key_system_config_selector.cc", | 45 "key_system_config_selector.cc", |
| 46 "key_system_config_selector.h", | 46 "key_system_config_selector.h", |
| 47 "lru.h", | 47 "lru.h", |
| 48 "multibuffer.cc", | 48 "multibuffer.cc", |
| 49 "multibuffer.h", | 49 "multibuffer.h", |
| 50 "multibuffer_data_source.cc", |
| 51 "multibuffer_data_source.h", |
| 50 "multibuffer_reader.cc", | 52 "multibuffer_reader.cc", |
| 51 "multibuffer_reader.h", | 53 "multibuffer_reader.h", |
| 52 "new_session_cdm_result_promise.cc", | 54 "new_session_cdm_result_promise.cc", |
| 53 "new_session_cdm_result_promise.h", | 55 "new_session_cdm_result_promise.h", |
| 54 "rangemap.h", | 56 "rangemap.h", |
| 55 "texttrack_impl.cc", | 57 "texttrack_impl.cc", |
| 56 "texttrack_impl.h", | 58 "texttrack_impl.h", |
| 57 "url_index.cc", | 59 "url_index.cc", |
| 58 "url_index.h", | 60 "url_index.h", |
| 59 "video_frame_compositor.cc", | 61 "video_frame_compositor.cc", |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 sources = [ | 122 sources = [ |
| 121 "buffered_data_source_host_impl_unittest.cc", | 123 "buffered_data_source_host_impl_unittest.cc", |
| 122 "buffered_data_source_unittest.cc", | 124 "buffered_data_source_unittest.cc", |
| 123 "buffered_resource_loader_unittest.cc", | 125 "buffered_resource_loader_unittest.cc", |
| 124 "cache_util_unittest.cc", | 126 "cache_util_unittest.cc", |
| 125 "key_system_config_selector_unittest.cc", | 127 "key_system_config_selector_unittest.cc", |
| 126 "lru_unittest.cc", | 128 "lru_unittest.cc", |
| 127 "mock_webframeclient.h", | 129 "mock_webframeclient.h", |
| 128 "mock_weburlloader.cc", | 130 "mock_weburlloader.cc", |
| 129 "mock_weburlloader.h", | 131 "mock_weburlloader.h", |
| 132 "multibuffer_data_source_unittest.cc", |
| 130 "multibuffer_unittest.cc", | 133 "multibuffer_unittest.cc", |
| 131 "rangemap_unittest.cc", | 134 "rangemap_unittest.cc", |
| 132 "run_all_unittests.cc", | 135 "run_all_unittests.cc", |
| 133 "test_response_generator.cc", | 136 "test_response_generator.cc", |
| 134 "test_response_generator.h", | 137 "test_response_generator.h", |
| 135 "url_index_unittests.cc", | 138 "url_index_unittests.cc", |
| 136 "video_frame_compositor_unittest.cc", | 139 "video_frame_compositor_unittest.cc", |
| 137 "webaudiosourceprovider_impl_unittest.cc", | 140 "webaudiosourceprovider_impl_unittest.cc", |
| 138 ] | 141 ] |
| 139 | 142 |
| 140 if (is_android) { | 143 if (is_android) { |
| 141 deps += [ "//ui/gl" ] | 144 deps += [ "//ui/gl" ] |
| 142 } | 145 } |
| 143 } | 146 } |
| 144 | 147 |
| 145 # TODO(GYP): Delete this after we've converted everything to GN. | 148 # TODO(GYP): Delete this after we've converted everything to GN. |
| 146 # The _run targets exist only for compatibility w/ GYP. | 149 # The _run targets exist only for compatibility w/ GYP. |
| 147 group("media_blink_unittests_run") { | 150 group("media_blink_unittests_run") { |
| 148 testonly = true | 151 testonly = true |
| 149 deps = [ | 152 deps = [ |
| 150 ":media_blink_unittests", | 153 ":media_blink_unittests", |
| 151 ] | 154 ] |
| 152 } | 155 } |
| OLD | NEW |