| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 "webcontentdecryptionmodule_impl.cc", | 67 "webcontentdecryptionmodule_impl.cc", |
| 68 "webcontentdecryptionmodule_impl.h", | 68 "webcontentdecryptionmodule_impl.h", |
| 69 "webcontentdecryptionmoduleaccess_impl.cc", | 69 "webcontentdecryptionmoduleaccess_impl.cc", |
| 70 "webcontentdecryptionmoduleaccess_impl.h", | 70 "webcontentdecryptionmoduleaccess_impl.h", |
| 71 "webcontentdecryptionmodulesession_impl.cc", | 71 "webcontentdecryptionmodulesession_impl.cc", |
| 72 "webcontentdecryptionmodulesession_impl.h", | 72 "webcontentdecryptionmodulesession_impl.h", |
| 73 "webencryptedmediaclient_impl.cc", | 73 "webencryptedmediaclient_impl.cc", |
| 74 "webencryptedmediaclient_impl.h", | 74 "webencryptedmediaclient_impl.h", |
| 75 "webinbandtexttrack_impl.cc", | 75 "webinbandtexttrack_impl.cc", |
| 76 "webinbandtexttrack_impl.h", | 76 "webinbandtexttrack_impl.h", |
| 77 "webmediaplayer_cast_android.cc", |
| 78 "webmediaplayer_cast_android.h", |
| 77 "webmediaplayer_delegate.h", | 79 "webmediaplayer_delegate.h", |
| 78 "webmediaplayer_params.cc", | 80 "webmediaplayer_params.cc", |
| 79 "webmediaplayer_params.h", | 81 "webmediaplayer_params.h", |
| 80 "webmediaplayer_util.cc", | 82 "webmediaplayer_util.cc", |
| 81 "webmediaplayer_util.h", | 83 "webmediaplayer_util.h", |
| 82 "webmediasource_impl.cc", | 84 "webmediasource_impl.cc", |
| 83 "webmediasource_impl.h", | 85 "webmediasource_impl.h", |
| 84 "websourcebuffer_impl.cc", | 86 "websourcebuffer_impl.cc", |
| 85 "websourcebuffer_impl.h", | 87 "websourcebuffer_impl.h", |
| 86 ] | 88 ] |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 } | 151 } |
| 150 | 152 |
| 151 # TODO(GYP): Delete this after we've converted everything to GN. | 153 # TODO(GYP): Delete this after we've converted everything to GN. |
| 152 # The _run targets exist only for compatibility w/ GYP. | 154 # The _run targets exist only for compatibility w/ GYP. |
| 153 group("media_blink_unittests_run") { | 155 group("media_blink_unittests_run") { |
| 154 testonly = true | 156 testonly = true |
| 155 deps = [ | 157 deps = [ |
| 156 ":media_blink_unittests", | 158 ":media_blink_unittests", |
| 157 ] | 159 ] |
| 158 } | 160 } |
| OLD | NEW |