| 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 |
| 11 deps = [ | 11 deps = [ |
| 12 "//base", | 12 "//base", |
| 13 "//cc", | 13 "//cc", |
| 14 "//cc/blink", | 14 "//cc/blink", |
| 15 "//gpu/blink", | 15 "//gpu/blink", |
| 16 "//media", | 16 "//media", |
| 17 "//media:shared_memory_support", | 17 "//media:shared_memory_support", |
| 18 "//net", | 18 "//net", |
| 19 "//skia", | 19 "//skia", |
| 20 "//third_party/WebKit/public:blink", | 20 "//third_party/WebKit/public:blink", |
| 21 "//ui/gfx", | 21 "//ui/gfx", |
| 22 "//ui/gfx/geometry", | 22 "//ui/gfx/geometry", |
| 23 "//url", | 23 "//url", |
| 24 ] | 24 ] |
| 25 | 25 |
| 26 defines = [ "MEDIA_IMPLEMENTATION" ] | 26 defines = [ "MEDIA_BLINK_IMPLEMENTATION" ] |
| 27 | 27 |
| 28 sources = [ | 28 sources = [ |
| 29 "active_loader.cc", | 29 "active_loader.cc", |
| 30 "active_loader.h", | 30 "active_loader.h", |
| 31 "buffered_data_source.cc", | 31 "buffered_data_source.cc", |
| 32 "buffered_data_source.h", | 32 "buffered_data_source.h", |
| 33 "buffered_data_source_host_impl.cc", | 33 "buffered_data_source_host_impl.cc", |
| 34 "buffered_data_source_host_impl.h", | 34 "buffered_data_source_host_impl.h", |
| 35 "buffered_resource_loader.cc", | 35 "buffered_resource_loader.cc", |
| 36 "buffered_resource_loader.h", | 36 "buffered_resource_loader.h", |
| 37 "cache_util.cc", | 37 "cache_util.cc", |
| 38 "cache_util.h", | 38 "cache_util.h", |
| 39 "cdm_result_promise.h", | 39 "cdm_result_promise.h", |
| 40 "cdm_result_promise_helper.cc", | 40 "cdm_result_promise_helper.cc", |
| 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 "key_system_config_selector.cc", | 44 "key_system_config_selector.cc", |
| 45 "key_system_config_selector.h", | 45 "key_system_config_selector.h", |
| 46 "media_blink_export.h", |
| 46 "new_session_cdm_result_promise.cc", | 47 "new_session_cdm_result_promise.cc", |
| 47 "new_session_cdm_result_promise.h", | 48 "new_session_cdm_result_promise.h", |
| 48 "texttrack_impl.cc", | 49 "texttrack_impl.cc", |
| 49 "texttrack_impl.h", | 50 "texttrack_impl.h", |
| 50 "video_frame_compositor.cc", | 51 "video_frame_compositor.cc", |
| 51 "video_frame_compositor.h", | 52 "video_frame_compositor.h", |
| 52 "webaudiosourceprovider_impl.cc", | 53 "webaudiosourceprovider_impl.cc", |
| 53 "webaudiosourceprovider_impl.h", | 54 "webaudiosourceprovider_impl.h", |
| 54 "webcontentdecryptionmodule_impl.cc", | 55 "webcontentdecryptionmodule_impl.cc", |
| 55 "webcontentdecryptionmodule_impl.h", | 56 "webcontentdecryptionmodule_impl.h", |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 } | 131 } |
| 131 | 132 |
| 132 # TODO(GYP): Delete this after we've converted everything to GN. | 133 # TODO(GYP): Delete this after we've converted everything to GN. |
| 133 # The _run targets exist only for compatibility w/ GYP. | 134 # The _run targets exist only for compatibility w/ GYP. |
| 134 group("media_blink_unittests_run") { | 135 group("media_blink_unittests_run") { |
| 135 testonly = true | 136 testonly = true |
| 136 deps = [ | 137 deps = [ |
| 137 ":media_blink_unittests", | 138 ":media_blink_unittests", |
| 138 ] | 139 ] |
| 139 } | 140 } |
| OLD | NEW |