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 ] | |
213 deps = [ | 210 deps = [ |
214 "//base/test:test_support", | 211 "//base/test:test_support", |
215 "//ipc", | 212 "//ipc", |
216 "//ipc:test_support", | 213 "//ipc:test_support", |
217 "//ppapi/proxy", | 214 "//ppapi/proxy", |
| 215 "//ppapi/shared_impl", |
218 "//testing/gmock", | 216 "//testing/gmock", |
219 "//testing/gtest", | 217 "//testing/gtest", |
220 ] | 218 ] |
221 } | 219 } |
OLD | NEW |