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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 "webmediaplayer_util.cc", | 81 "webmediaplayer_util.cc", |
82 "webmediaplayer_util.h", | 82 "webmediaplayer_util.h", |
83 "webmediasource_impl.cc", | 83 "webmediasource_impl.cc", |
84 "webmediasource_impl.h", | 84 "webmediasource_impl.h", |
85 "websourcebuffer_impl.cc", | 85 "websourcebuffer_impl.cc", |
86 "websourcebuffer_impl.h", | 86 "websourcebuffer_impl.h", |
87 ] | 87 ] |
88 | 88 |
89 if (media_use_ffmpeg || !is_android) { | 89 if (media_use_ffmpeg || !is_android) { |
90 sources += [ | 90 sources += [ |
91 "encrypted_media_player_support.cc", | |
92 "encrypted_media_player_support.h", | |
93 "webmediaplayer_impl.cc", | 91 "webmediaplayer_impl.cc", |
94 "webmediaplayer_impl.h", | 92 "webmediaplayer_impl.h", |
95 ] | 93 ] |
96 if (is_android) { | 94 if (is_android) { |
97 sources += [ | 95 sources += [ |
98 "webmediaplayer_cast_android.cc", | 96 "webmediaplayer_cast_android.cc", |
99 "webmediaplayer_cast_android.h", | 97 "webmediaplayer_cast_android.h", |
100 ] | 98 ] |
101 } | 99 } |
102 } | 100 } |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 "video_frame_compositor_unittest.cc", | 145 "video_frame_compositor_unittest.cc", |
148 "webaudiosourceprovider_impl_unittest.cc", | 146 "webaudiosourceprovider_impl_unittest.cc", |
149 ] | 147 ] |
150 | 148 |
151 if (is_android) { | 149 if (is_android) { |
152 deps += [ "//ui/gl" ] | 150 deps += [ "//ui/gl" ] |
153 } | 151 } |
154 | 152 |
155 configs += [ "//v8:external_startup_data" ] | 153 configs += [ "//v8:external_startup_data" ] |
156 } | 154 } |
OLD | NEW |