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