| 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 30 matching lines...) Expand all Loading... |
| 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 "interval_map.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 "media_blink_export.h", | 48 "media_blink_export.h", |
| 49 "multibuffer.cc", | 49 "multibuffer.cc", |
| 50 "multibuffer.h", | 50 "multibuffer.h", |
| 51 "multibuffer_reader.cc", | |
| 52 "multibuffer_reader.h", | |
| 53 "new_session_cdm_result_promise.cc", | 51 "new_session_cdm_result_promise.cc", |
| 54 "new_session_cdm_result_promise.h", | 52 "new_session_cdm_result_promise.h", |
| 55 "texttrack_impl.cc", | 53 "texttrack_impl.cc", |
| 56 "texttrack_impl.h", | 54 "texttrack_impl.h", |
| 57 "video_frame_compositor.cc", | 55 "video_frame_compositor.cc", |
| 58 "video_frame_compositor.h", | 56 "video_frame_compositor.h", |
| 59 "webaudiosourceprovider_impl.cc", | 57 "webaudiosourceprovider_impl.cc", |
| 60 "webaudiosourceprovider_impl.h", | 58 "webaudiosourceprovider_impl.h", |
| 61 "webcontentdecryptionmodule_impl.cc", | 59 "webcontentdecryptionmodule_impl.cc", |
| 62 "webcontentdecryptionmodule_impl.h", | 60 "webcontentdecryptionmodule_impl.h", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 "buffered_data_source_host_impl_unittest.cc", | 115 "buffered_data_source_host_impl_unittest.cc", |
| 118 "buffered_data_source_unittest.cc", | 116 "buffered_data_source_unittest.cc", |
| 119 "buffered_resource_loader_unittest.cc", | 117 "buffered_resource_loader_unittest.cc", |
| 120 "cache_util_unittest.cc", | 118 "cache_util_unittest.cc", |
| 121 "interval_map_unittest.cc", | 119 "interval_map_unittest.cc", |
| 122 "key_system_config_selector_unittest.cc", | 120 "key_system_config_selector_unittest.cc", |
| 123 "lru_unittest.cc", | 121 "lru_unittest.cc", |
| 124 "mock_webframeclient.h", | 122 "mock_webframeclient.h", |
| 125 "mock_weburlloader.cc", | 123 "mock_weburlloader.cc", |
| 126 "mock_weburlloader.h", | 124 "mock_weburlloader.h", |
| 127 "multibuffer_unittest.cc", | |
| 128 "run_all_unittests.cc", | 125 "run_all_unittests.cc", |
| 129 "test_random.h", | 126 "test_random.h", |
| 130 "test_response_generator.cc", | 127 "test_response_generator.cc", |
| 131 "test_response_generator.h", | 128 "test_response_generator.h", |
| 132 "video_frame_compositor_unittest.cc", | 129 "video_frame_compositor_unittest.cc", |
| 133 "webaudiosourceprovider_impl_unittest.cc", | 130 "webaudiosourceprovider_impl_unittest.cc", |
| 134 ] | 131 ] |
| 135 | 132 |
| 136 if (is_android) { | 133 if (is_android) { |
| 137 deps += [ "//ui/gl" ] | 134 deps += [ "//ui/gl" ] |
| 138 } | 135 } |
| 139 | 136 |
| 140 configs += [ "//v8:external_startup_data" ] | 137 configs += [ "//v8:external_startup_data" ] |
| 141 } | 138 } |
| 142 | 139 |
| 143 # TODO(GYP): Delete this after we've converted everything to GN. | 140 # TODO(GYP): Delete this after we've converted everything to GN. |
| 144 # The _run targets exist only for compatibility w/ GYP. | 141 # The _run targets exist only for compatibility w/ GYP. |
| 145 group("media_blink_unittests_run") { | 142 group("media_blink_unittests_run") { |
| 146 testonly = true | 143 testonly = true |
| 147 deps = [ | 144 deps = [ |
| 148 ":media_blink_unittests", | 145 ":media_blink_unittests", |
| 149 ] | 146 ] |
| 150 } | 147 } |
| OLD | NEW |