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