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 component("shared_impl") { | 5 component("shared_impl") { |
6 output_name = "ppapi_shared" | 6 output_name = "ppapi_shared" |
7 | 7 |
8 sources = [ | 8 sources = [ |
9 "array_var.cc", | 9 "array_var.cc", |
10 "array_var.h", | 10 "array_var.h", |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 libs = [ "QuartzCore.framework" ] | 186 libs = [ "QuartzCore.framework" ] |
187 } | 187 } |
188 } | 188 } |
189 | 189 |
190 source_set("test_support") { | 190 source_set("test_support") { |
191 testonly = true | 191 testonly = true |
192 | 192 |
193 sources = [ | 193 sources = [ |
194 "test_globals.cc", | 194 "test_globals.cc", |
195 "test_globals.h", | 195 "test_globals.h", |
196 "unittest_utils.cc", | 196 "test_utils.cc", |
197 "unittest_utils.h", | 197 "test_utils.h", |
198 ] | 198 ] |
199 | 199 |
200 deps = [ | 200 deps = [ |
201 "//base/test:test_support", | 201 "//base/test:test_support", |
202 "//ipc", | 202 "//ipc", |
203 "//ipc:test_support", | 203 "//ipc:test_support", |
204 "//ppapi/proxy", | 204 "//ppapi/proxy", |
205 "//ppapi/shared_impl", | 205 "//ppapi/shared_impl", |
206 "//testing/gmock", | 206 "//testing/gmock", |
207 "//testing/gtest", | 207 "//testing/gtest", |
208 ] | 208 ] |
209 } | 209 } |
OLD | NEW |