| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |