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

Side by Side Diff: ppapi/shared_impl/BUILD.gn

Issue 2151013002: Convert some GN test support targets to static libs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remoting Created 4 years, 5 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 | « ppapi/proxy/BUILD.gn ('k') | remoting/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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//build/config/nacl/config.gni") 5 import("//build/config/nacl/config.gni")
6 6
7 component("shared_impl") { 7 component("shared_impl") {
8 output_name = "ppapi_shared" 8 output_name = "ppapi_shared"
9 9
10 sources = [ 10 sources = [
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 "//third_party/icu:icuuc", 192 "//third_party/icu:icuuc",
193 "//url", 193 "//url",
194 ] 194 ]
195 } 195 }
196 196
197 if (is_mac) { 197 if (is_mac) {
198 libs = [ "QuartzCore.framework" ] 198 libs = [ "QuartzCore.framework" ]
199 } 199 }
200 } 200 }
201 201
202 source_set("test_support") { 202 static_library("test_support") {
203 testonly = true 203 testonly = true
204 204
205 sources = [ 205 sources = [
206 "test_globals.cc", 206 "test_globals.cc",
207 "test_globals.h", 207 "test_globals.h",
208 "test_utils.cc", 208 "test_utils.cc",
209 "test_utils.h", 209 "test_utils.h",
210 ] 210 ]
211 211
212 public_deps = [ 212 public_deps = [
213 "//ppapi/shared_impl", 213 "//ppapi/shared_impl",
214 ] 214 ]
215 deps = [ 215 deps = [
216 "//base/test:test_support", 216 "//base/test:test_support",
217 "//ipc", 217 "//ipc",
218 "//ipc:test_support", 218 "//ipc:test_support",
219 "//ppapi/proxy", 219 "//ppapi/proxy",
220 "//testing/gmock", 220 "//testing/gmock",
221 "//testing/gtest", 221 "//testing/gtest",
222 ] 222 ]
223 } 223 }
OLDNEW
« no previous file with comments | « ppapi/proxy/BUILD.gn ('k') | remoting/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698