| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "webmediaplayer_impl.cc", | 91 "webmediaplayer_impl.cc", |
| 92 "webmediaplayer_impl.h", | 92 "webmediaplayer_impl.h", |
| 93 ] | 93 ] |
| 94 if (is_android) { | 94 if (is_android) { |
| 95 sources += [ | 95 sources += [ |
| 96 "surface_texture_frame_provider.h", |
| 96 "webmediaplayer_cast_android.cc", | 97 "webmediaplayer_cast_android.cc", |
| 97 "webmediaplayer_cast_android.h", | 98 "webmediaplayer_cast_android.h", |
| 98 ] | 99 ] |
| 99 deps += [ "//gpu/command_buffer/client:gles2_interface" ] | 100 deps += [ "//gpu/command_buffer/client:gles2_interface" ] |
| 100 } | 101 } |
| 101 } | 102 } |
| 102 } | 103 } |
| 103 | 104 |
| 104 test("media_blink_unittests") { | 105 test("media_blink_unittests") { |
| 105 deps = [ | 106 deps = [ |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 ] | 153 ] |
| 153 | 154 |
| 154 if (is_android) { | 155 if (is_android) { |
| 155 deps += [ | 156 deps += [ |
| 156 "//media/base/android", | 157 "//media/base/android", |
| 157 "//media/base/android:media_java", | 158 "//media/base/android:media_java", |
| 158 "//v8:v8_external_startup_data_assets", | 159 "//v8:v8_external_startup_data_assets", |
| 159 ] | 160 ] |
| 160 } | 161 } |
| 161 } | 162 } |
| OLD | NEW |