| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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", | 51 "multibuffer_reader.cc", |
| 52 "multibuffer_reader.h", | 52 "multibuffer_reader.h", |
| 53 "new_session_cdm_result_promise.cc", | 53 "new_session_cdm_result_promise.cc", |
| 54 "new_session_cdm_result_promise.h", | 54 "new_session_cdm_result_promise.h", |
| 55 "resource_multibuffer_data_provider.cc", |
| 56 "resource_multibuffer_data_provider.h", |
| 55 "texttrack_impl.cc", | 57 "texttrack_impl.cc", |
| 56 "texttrack_impl.h", | 58 "texttrack_impl.h", |
| 59 "url_index.cc", |
| 60 "url_index.h", |
| 57 "video_frame_compositor.cc", | 61 "video_frame_compositor.cc", |
| 58 "video_frame_compositor.h", | 62 "video_frame_compositor.h", |
| 59 "webaudiosourceprovider_impl.cc", | 63 "webaudiosourceprovider_impl.cc", |
| 60 "webaudiosourceprovider_impl.h", | 64 "webaudiosourceprovider_impl.h", |
| 61 "webcontentdecryptionmodule_impl.cc", | 65 "webcontentdecryptionmodule_impl.cc", |
| 62 "webcontentdecryptionmodule_impl.h", | 66 "webcontentdecryptionmodule_impl.h", |
| 63 "webcontentdecryptionmoduleaccess_impl.cc", | 67 "webcontentdecryptionmoduleaccess_impl.cc", |
| 64 "webcontentdecryptionmoduleaccess_impl.h", | 68 "webcontentdecryptionmoduleaccess_impl.h", |
| 65 "webcontentdecryptionmodulesession_impl.cc", | 69 "webcontentdecryptionmodulesession_impl.cc", |
| 66 "webcontentdecryptionmodulesession_impl.h", | 70 "webcontentdecryptionmodulesession_impl.h", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 "key_system_config_selector_unittest.cc", | 126 "key_system_config_selector_unittest.cc", |
| 123 "lru_unittest.cc", | 127 "lru_unittest.cc", |
| 124 "mock_webframeclient.h", | 128 "mock_webframeclient.h", |
| 125 "mock_weburlloader.cc", | 129 "mock_weburlloader.cc", |
| 126 "mock_weburlloader.h", | 130 "mock_weburlloader.h", |
| 127 "multibuffer_unittest.cc", | 131 "multibuffer_unittest.cc", |
| 128 "run_all_unittests.cc", | 132 "run_all_unittests.cc", |
| 129 "test_random.h", | 133 "test_random.h", |
| 130 "test_response_generator.cc", | 134 "test_response_generator.cc", |
| 131 "test_response_generator.h", | 135 "test_response_generator.h", |
| 136 "url_index_unittest.cc", |
| 132 "video_frame_compositor_unittest.cc", | 137 "video_frame_compositor_unittest.cc", |
| 133 "webaudiosourceprovider_impl_unittest.cc", | 138 "webaudiosourceprovider_impl_unittest.cc", |
| 134 ] | 139 ] |
| 135 | 140 |
| 136 if (is_android) { | 141 if (is_android) { |
| 137 deps += [ "//ui/gl" ] | 142 deps += [ "//ui/gl" ] |
| 138 } | 143 } |
| 139 | 144 |
| 140 configs += [ "//v8:external_startup_data" ] | 145 configs += [ "//v8:external_startup_data" ] |
| 141 } | 146 } |
| 142 | 147 |
| 143 # TODO(GYP): Delete this after we've converted everything to GN. | 148 # TODO(GYP): Delete this after we've converted everything to GN. |
| 144 # The _run targets exist only for compatibility w/ GYP. | 149 # The _run targets exist only for compatibility w/ GYP. |
| 145 group("media_blink_unittests_run") { | 150 group("media_blink_unittests_run") { |
| 146 testonly = true | 151 testonly = true |
| 147 deps = [ | 152 deps = [ |
| 148 ":media_blink_unittests", | 153 ":media_blink_unittests", |
| 149 ] | 154 ] |
| 150 } | 155 } |
| OLD | NEW |