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("//services/service_manager/public/cpp/service.gni") | 6 import("//services/service_manager/public/cpp/service.gni") |
7 import("//services/service_manager/public/service_manifest.gni") | 7 import("//services/service_manager/public/service_manifest.gni") |
8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
9 | 9 |
10 config("mojo_media_config") { | 10 config("mojo_media_config") { |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 sources += [ | 125 sources += [ |
126 "android_mojo_media_client.cc", | 126 "android_mojo_media_client.cc", |
127 "android_mojo_media_client.h", | 127 "android_mojo_media_client.h", |
128 ] | 128 ] |
129 } | 129 } |
130 } | 130 } |
131 | 131 |
132 service("media") { | 132 service("media") { |
133 testonly = true | 133 testonly = true |
134 | 134 |
| 135 # crbug.com/676418: Suppress symbol import warnings. |
| 136 if (is_win && is_component_build) { |
| 137 ldflags = [ "/ignore:4217" ] |
| 138 } |
| 139 |
135 sources = [ | 140 sources = [ |
136 "main.cc", | 141 "main.cc", |
137 ] | 142 ] |
138 | 143 |
139 public_deps = [ | 144 public_deps = [ |
140 "//base", | 145 "//base", |
141 "//media", | 146 "//media", |
142 ] | 147 ] |
143 | 148 |
144 deps = [ | 149 deps = [ |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 data_deps = [ | 208 data_deps = [ |
204 ":media", | 209 ":media", |
205 ":pipeline_test_manifest", | 210 ":pipeline_test_manifest", |
206 ] | 211 ] |
207 } | 212 } |
208 | 213 |
209 service_manifest("pipeline_test_manifest") { | 214 service_manifest("pipeline_test_manifest") { |
210 name = "media_pipeline_integration_unittests" | 215 name = "media_pipeline_integration_unittests" |
211 source = "pipeline_test_manifest.json" | 216 source = "pipeline_test_manifest.json" |
212 } | 217 } |
OLD | NEW |