| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 120 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 121 | 121 |
| 122 sources = [ | 122 sources = [ |
| 123 "buffered_data_source_host_impl_unittest.cc", | 123 "buffered_data_source_host_impl_unittest.cc", |
| 124 "buffered_data_source_unittest.cc", | 124 "buffered_data_source_unittest.cc", |
| 125 "buffered_resource_loader_unittest.cc", | 125 "buffered_resource_loader_unittest.cc", |
| 126 "cache_util_unittest.cc", | 126 "cache_util_unittest.cc", |
| 127 "interval_map_unittest.cc", | 127 "interval_map_unittest.cc", |
| 128 "key_system_config_selector_unittest.cc", | 128 "key_system_config_selector_unittest.cc", |
| 129 "lru_unittest.cc", | 129 "lru_unittest.cc", |
| 130 "mock_webframeclient.cc", |
| 130 "mock_webframeclient.h", | 131 "mock_webframeclient.h", |
| 131 "mock_weburlloader.cc", | 132 "mock_weburlloader.cc", |
| 132 "mock_weburlloader.h", | 133 "mock_weburlloader.h", |
| 133 "multibuffer_data_source_unittest.cc", | 134 "multibuffer_data_source_unittest.cc", |
| 134 "multibuffer_unittest.cc", | 135 "multibuffer_unittest.cc", |
| 135 "run_all_unittests.cc", | 136 "run_all_unittests.cc", |
| 136 "test_random.h", | 137 "test_random.h", |
| 137 "test_response_generator.cc", | 138 "test_response_generator.cc", |
| 138 "test_response_generator.h", | 139 "test_response_generator.h", |
| 139 "url_index_unittest.cc", | 140 "url_index_unittest.cc", |
| 140 "video_frame_compositor_unittest.cc", | 141 "video_frame_compositor_unittest.cc", |
| 141 "webaudiosourceprovider_impl_unittest.cc", | 142 "webaudiosourceprovider_impl_unittest.cc", |
| 142 ] | 143 ] |
| 143 | 144 |
| 144 if (is_android) { | 145 if (is_android) { |
| 145 deps += [ "//ui/gl" ] | 146 deps += [ "//ui/gl" ] |
| 146 } | 147 } |
| 147 | 148 |
| 148 configs += [ "//v8:external_startup_data" ] | 149 configs += [ "//v8:external_startup_data" ] |
| 149 } | 150 } |
| 150 | 151 |
| 151 # TODO(GYP): Delete this after we've converted everything to GN. | 152 # TODO(GYP): Delete this after we've converted everything to GN. |
| 152 # The _run targets exist only for compatibility w/ GYP. | 153 # The _run targets exist only for compatibility w/ GYP. |
| 153 group("media_blink_unittests_run") { | 154 group("media_blink_unittests_run") { |
| 154 testonly = true | 155 testonly = true |
| 155 deps = [ | 156 deps = [ |
| 156 ":media_blink_unittests", | 157 ":media_blink_unittests", |
| 157 ] | 158 ] |
| 158 } | 159 } |
| OLD | NEW |