Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(579)

Side by Side Diff: media/mojo/services/BUILD.gn

Issue 2581893002: Use the /WX flag to have link warnings treated as errors. (Closed)
Patch Set: Move /WX setter into :compiler and respect fatal_linker_warnings Created 3 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/mojo/BUILD.gn ('k') | third_party/WebKit/Source/platform/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « media/mojo/BUILD.gn ('k') | third_party/WebKit/Source/platform/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698