Chromium Code Reviews| 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 = [ |
|
xhwang
2015/11/06 23:43:18
Please add media_blink_export.h to the gyp/gn file
hubbe
2015/11/06 23:52:11
Done.
| |
| 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", |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 130 } | 130 } |
| 131 | 131 |
| 132 # TODO(GYP): Delete this after we've converted everything to GN. | 132 # TODO(GYP): Delete this after we've converted everything to GN. |
| 133 # The _run targets exist only for compatibility w/ GYP. | 133 # The _run targets exist only for compatibility w/ GYP. |
| 134 group("media_blink_unittests_run") { | 134 group("media_blink_unittests_run") { |
| 135 testonly = true | 135 testonly = true |
| 136 deps = [ | 136 deps = [ |
| 137 ":media_blink_unittests", | 137 ":media_blink_unittests", |
| 138 ] | 138 ] |
| 139 } | 139 } |
| OLD | NEW |