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 26 matching lines...) Expand all Loading... |
37 "cache_util.h", | 37 "cache_util.h", |
38 "cdm_result_promise.h", | 38 "cdm_result_promise.h", |
39 "cdm_result_promise_helper.cc", | 39 "cdm_result_promise_helper.cc", |
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", |
| 48 "multibuffer.cc", |
| 49 "multibuffer.h", |
| 50 "multibuffer_reader.cc", |
| 51 "multibuffer_reader.h", |
47 "new_session_cdm_result_promise.cc", | 52 "new_session_cdm_result_promise.cc", |
48 "new_session_cdm_result_promise.h", | 53 "new_session_cdm_result_promise.h", |
| 54 "rangemap.h", |
49 "texttrack_impl.cc", | 55 "texttrack_impl.cc", |
50 "texttrack_impl.h", | 56 "texttrack_impl.h", |
| 57 "url_index.cc", |
| 58 "url_index.h", |
51 "video_frame_compositor.cc", | 59 "video_frame_compositor.cc", |
52 "video_frame_compositor.h", | 60 "video_frame_compositor.h", |
53 "webaudiosourceprovider_impl.cc", | 61 "webaudiosourceprovider_impl.cc", |
54 "webaudiosourceprovider_impl.h", | 62 "webaudiosourceprovider_impl.h", |
55 "webcontentdecryptionmodule_impl.cc", | 63 "webcontentdecryptionmodule_impl.cc", |
56 "webcontentdecryptionmodule_impl.h", | 64 "webcontentdecryptionmodule_impl.h", |
57 "webcontentdecryptionmoduleaccess_impl.cc", | 65 "webcontentdecryptionmoduleaccess_impl.cc", |
58 "webcontentdecryptionmoduleaccess_impl.h", | 66 "webcontentdecryptionmoduleaccess_impl.h", |
59 "webcontentdecryptionmodulesession_impl.cc", | 67 "webcontentdecryptionmodulesession_impl.cc", |
60 "webcontentdecryptionmodulesession_impl.h", | 68 "webcontentdecryptionmodulesession_impl.h", |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 ] | 116 ] |
109 | 117 |
110 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 118 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
111 | 119 |
112 sources = [ | 120 sources = [ |
113 "buffered_data_source_host_impl_unittest.cc", | 121 "buffered_data_source_host_impl_unittest.cc", |
114 "buffered_data_source_unittest.cc", | 122 "buffered_data_source_unittest.cc", |
115 "buffered_resource_loader_unittest.cc", | 123 "buffered_resource_loader_unittest.cc", |
116 "cache_util_unittest.cc", | 124 "cache_util_unittest.cc", |
117 "key_system_config_selector_unittest.cc", | 125 "key_system_config_selector_unittest.cc", |
| 126 "lru_unittest.cc", |
118 "mock_webframeclient.h", | 127 "mock_webframeclient.h", |
119 "mock_weburlloader.cc", | 128 "mock_weburlloader.cc", |
120 "mock_weburlloader.h", | 129 "mock_weburlloader.h", |
| 130 "multibuffer_unittest.cc", |
| 131 "rangemap_unittest.cc", |
121 "run_all_unittests.cc", | 132 "run_all_unittests.cc", |
122 "test_response_generator.cc", | 133 "test_response_generator.cc", |
123 "test_response_generator.h", | 134 "test_response_generator.h", |
| 135 "url_index_unittests.cc", |
124 "video_frame_compositor_unittest.cc", | 136 "video_frame_compositor_unittest.cc", |
125 "webaudiosourceprovider_impl_unittest.cc", | 137 "webaudiosourceprovider_impl_unittest.cc", |
126 ] | 138 ] |
127 | 139 |
128 if (is_android) { | 140 if (is_android) { |
129 deps += [ "//ui/gl" ] | 141 deps += [ "//ui/gl" ] |
130 } | 142 } |
131 } | 143 } |
132 | 144 |
133 # TODO(GYP): Delete this after we've converted everything to GN. | 145 # TODO(GYP): Delete this after we've converted everything to GN. |
134 # The _run targets exist only for compatibility w/ GYP. | 146 # The _run targets exist only for compatibility w/ GYP. |
135 group("media_blink_unittests_run") { | 147 group("media_blink_unittests_run") { |
136 testonly = true | 148 testonly = true |
137 deps = [ | 149 deps = [ |
138 ":media_blink_unittests", | 150 ":media_blink_unittests", |
139 ] | 151 ] |
140 } | 152 } |
OLD | NEW |