| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 "//components/scheduler:scheduler", | 99 "//components/scheduler:scheduler", |
| 100 "//components/scheduler:test_support", | 100 "//components/scheduler:test_support", |
| 101 "//gin", | 101 "//gin", |
| 102 "//media", | 102 "//media", |
| 103 "//media:shared_memory_support", | 103 "//media:shared_memory_support", |
| 104 "//media/base:test_support", | 104 "//media/base:test_support", |
| 105 "//net", | 105 "//net", |
| 106 "//testing/gmock", | 106 "//testing/gmock", |
| 107 "//testing/gtest", | 107 "//testing/gtest", |
| 108 "//third_party/WebKit/public:blink", | 108 "//third_party/WebKit/public:blink", |
| 109 "//ui/gfx:test_support", |
| 109 "//ui/gfx/geometry", | 110 "//ui/gfx/geometry", |
| 110 "//ui/gfx:test_support", | |
| 111 "//url", | 111 "//url", |
| 112 ] | 112 ] |
| 113 | 113 |
| 114 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 114 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 115 | 115 |
| 116 sources = [ | 116 sources = [ |
| 117 "buffered_data_source_host_impl_unittest.cc", | 117 "buffered_data_source_host_impl_unittest.cc", |
| 118 "buffered_data_source_unittest.cc", | 118 "buffered_data_source_unittest.cc", |
| 119 "buffered_resource_loader_unittest.cc", | 119 "buffered_resource_loader_unittest.cc", |
| 120 "cache_util_unittest.cc", | 120 "cache_util_unittest.cc", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 141 } | 141 } |
| 142 | 142 |
| 143 # TODO(GYP): Delete this after we've converted everything to GN. | 143 # TODO(GYP): Delete this after we've converted everything to GN. |
| 144 # The _run targets exist only for compatibility w/ GYP. | 144 # The _run targets exist only for compatibility w/ GYP. |
| 145 group("media_blink_unittests_run") { | 145 group("media_blink_unittests_run") { |
| 146 testonly = true | 146 testonly = true |
| 147 deps = [ | 147 deps = [ |
| 148 ":media_blink_unittests", | 148 ":media_blink_unittests", |
| 149 ] | 149 ] |
| 150 } | 150 } |
| OLD | NEW |