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 = [ |
11 "//base", | 11 "//base", |
12 "//cc", | 12 "//cc", |
13 "//cc/blink", | 13 "//cc/blink", |
14 "//gpu/blink", | 14 "//gpu/blink", |
15 "//media", | 15 "//media", |
| 16 "//media:media_mime_util", |
16 "//media:shared_memory_support", | 17 "//media:shared_memory_support", |
17 "//net", | 18 "//net", |
18 "//skia", | 19 "//skia", |
19 "//third_party/WebKit/public:blink", | 20 "//third_party/WebKit/public:blink", |
20 "//ui/gfx", | 21 "//ui/gfx", |
21 "//ui/gfx/geometry", | 22 "//ui/gfx/geometry", |
22 "//url", | 23 "//url", |
23 ] | 24 ] |
24 | 25 |
25 defines = [ "MEDIA_IMPLEMENTATION" ] | 26 defines = [ "MEDIA_IMPLEMENTATION" ] |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 "test_response_generator.h", | 124 "test_response_generator.h", |
124 "video_frame_compositor_unittest.cc", | 125 "video_frame_compositor_unittest.cc", |
125 "webaudiosourceprovider_impl_unittest.cc", | 126 "webaudiosourceprovider_impl_unittest.cc", |
126 ] | 127 ] |
127 | 128 |
128 if (is_android) { | 129 if (is_android) { |
129 deps += [ "//ui/gl" ] | 130 deps += [ "//ui/gl" ] |
130 } | 131 } |
131 } | 132 } |
132 } | 133 } |
OLD | NEW |