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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 source_set("test_support") { | 200 source_set("test_support") { |
201 testonly = true | 201 testonly = true |
202 | 202 |
203 sources = [ | 203 sources = [ |
204 "test_globals.cc", | 204 "test_globals.cc", |
205 "test_globals.h", | 205 "test_globals.h", |
206 "test_utils.cc", | 206 "test_utils.cc", |
207 "test_utils.h", | 207 "test_utils.h", |
208 ] | 208 ] |
209 | 209 |
| 210 public_deps = [ |
| 211 "//ppapi/shared_impl", |
| 212 ] |
210 deps = [ | 213 deps = [ |
211 "//base/test:test_support", | 214 "//base/test:test_support", |
212 "//ipc", | 215 "//ipc", |
213 "//ipc:test_support", | 216 "//ipc:test_support", |
214 "//ppapi/proxy", | 217 "//ppapi/proxy", |
215 "//ppapi/shared_impl", | |
216 "//testing/gmock", | 218 "//testing/gmock", |
217 "//testing/gtest", | 219 "//testing/gtest", |
218 ] | 220 ] |
219 } | 221 } |
OLD | NEW |