| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "webcontentdecryptionmodule_impl.cc", | 48 "webcontentdecryptionmodule_impl.cc", |
| 49 "webcontentdecryptionmodule_impl.h", | 49 "webcontentdecryptionmodule_impl.h", |
| 50 "webcontentdecryptionmoduleaccess_impl.cc", | 50 "webcontentdecryptionmoduleaccess_impl.cc", |
| 51 "webcontentdecryptionmoduleaccess_impl.h", | 51 "webcontentdecryptionmoduleaccess_impl.h", |
| 52 "webcontentdecryptionmodulesession_impl.cc", | 52 "webcontentdecryptionmodulesession_impl.cc", |
| 53 "webcontentdecryptionmodulesession_impl.h", | 53 "webcontentdecryptionmodulesession_impl.h", |
| 54 "webencryptedmediaclient_impl.cc", | 54 "webencryptedmediaclient_impl.cc", |
| 55 "webencryptedmediaclient_impl.h", | 55 "webencryptedmediaclient_impl.h", |
| 56 "webinbandtexttrack_impl.cc", | 56 "webinbandtexttrack_impl.cc", |
| 57 "webinbandtexttrack_impl.h", | 57 "webinbandtexttrack_impl.h", |
| 58 "webmediacapabilitiesclient_impl.cc", |
| 59 "webmediacapabilitiesclient_impl.h", |
| 58 "webmediaplayer_delegate.h", | 60 "webmediaplayer_delegate.h", |
| 59 "webmediaplayer_params.cc", | 61 "webmediaplayer_params.cc", |
| 60 "webmediaplayer_params.h", | 62 "webmediaplayer_params.h", |
| 61 "webmediaplayer_util.cc", | 63 "webmediaplayer_util.cc", |
| 62 "webmediaplayer_util.h", | 64 "webmediaplayer_util.h", |
| 63 "webmediasource_impl.cc", | 65 "webmediasource_impl.cc", |
| 64 "webmediasource_impl.h", | 66 "webmediasource_impl.h", |
| 65 "websourcebuffer_impl.cc", | 67 "websourcebuffer_impl.cc", |
| 66 "websourcebuffer_impl.h", | 68 "websourcebuffer_impl.h", |
| 67 ] | 69 ] |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 ] | 150 ] |
| 149 | 151 |
| 150 if (is_android) { | 152 if (is_android) { |
| 151 deps += [ | 153 deps += [ |
| 152 "//media/base/android", | 154 "//media/base/android", |
| 153 "//media/base/android:media_java", | 155 "//media/base/android:media_java", |
| 154 "//v8:v8_external_startup_data_assets", | 156 "//v8:v8_external_startup_data_assets", |
| 155 ] | 157 ] |
| 156 } | 158 } |
| 157 } | 159 } |
| OLD | NEW |