| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "webmediaplayer_params.cc", | 59 "webmediaplayer_params.cc", |
| 60 "webmediaplayer_params.h", | 60 "webmediaplayer_params.h", |
| 61 "webmediaplayer_util.cc", | 61 "webmediaplayer_util.cc", |
| 62 "webmediaplayer_util.h", | 62 "webmediaplayer_util.h", |
| 63 "webmediasource_impl.cc", | 63 "webmediasource_impl.cc", |
| 64 "webmediasource_impl.h", | 64 "webmediasource_impl.h", |
| 65 "websourcebuffer_impl.cc", | 65 "websourcebuffer_impl.cc", |
| 66 "websourcebuffer_impl.h", | 66 "websourcebuffer_impl.h", |
| 67 ] | 67 ] |
| 68 | 68 |
| 69 public_configs = [ "//media/mojo/services:mojo_media_config" ] |
| 70 |
| 69 defines = [ "MEDIA_BLINK_IMPLEMENTATION" ] | 71 defines = [ "MEDIA_BLINK_IMPLEMENTATION" ] |
| 70 | 72 |
| 71 deps = [ | 73 deps = [ |
| 72 "//base", | 74 "//base", |
| 73 "//cc", | 75 "//cc", |
| 74 "//cc/blink", | 76 "//cc/blink", |
| 75 "//gpu", | 77 "//gpu", |
| 76 "//media", | 78 "//media", |
| 77 "//media:shared_memory_support", | 79 "//media:shared_memory_support", |
| 78 "//net", | 80 "//net", |
| (...skipping 69 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 |