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 config("proxy_implementation") { | 5 config("proxy_implementation") { |
6 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ] | 6 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ] |
7 } | 7 } |
8 | 8 |
9 component("proxy") { | 9 component("proxy") { |
10 output_name = "ppapi_proxy" | 10 output_name = "ppapi_proxy" |
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 | 265 |
266 configs += [ ":proxy_implementation" ] | 266 configs += [ ":proxy_implementation" ] |
267 | 267 |
268 deps = [ | 268 deps = [ |
269 "//base", | 269 "//base", |
270 "//gpu/command_buffer/client:gles2_implementation", | 270 "//gpu/command_buffer/client:gles2_implementation", |
271 "//gpu/ipc", | 271 "//gpu/ipc", |
272 "//ipc", | 272 "//ipc", |
273 "//media:shared_memory_support", | 273 "//media:shared_memory_support", |
274 "//ppapi/c", | 274 "//ppapi/c", |
275 "//ppapi/proxy:ipc_sources", | 275 "//ppapi/proxy:ipc", |
276 "//ppapi/shared_impl", | 276 "//ppapi/shared_impl", |
277 "//third_party/icu", | 277 "//third_party/icu", |
278 ] | 278 ] |
279 | 279 |
280 if (is_nacl) { | 280 if (is_nacl) { |
281 deps += [ | 281 deps += [ |
282 "//ui/events:latency_info", | 282 "//ui/events:latency_info", |
283 "//mojo/nacl:mojo", | 283 "//mojo/nacl:mojo", |
284 ] | 284 ] |
285 } else { | 285 } else { |
286 deps += [ | 286 deps += [ |
287 "//base/third_party/dynamic_annotations", | 287 "//base/third_party/dynamic_annotations", |
288 "//gin", | 288 "//gin", |
289 "//skia", | 289 "//skia", |
290 "//ui/events:events_base", | 290 "//ui/events:events_base", |
291 "//ui/surface", | 291 "//ui/surface", |
292 ] | 292 ] |
293 } | 293 } |
294 } | 294 } |
295 | 295 |
296 group("ipc") { | 296 source_set("ipc") { |
297 if (is_component_build) { | |
298 public_deps = [ | |
299 "//ppapi/proxy", | |
300 ] | |
301 } else { | |
302 public_deps = [ | |
303 ":ipc_sources", | |
304 ] | |
305 } | |
306 } | |
307 | |
308 source_set("ipc_sources") { | |
309 sources = [ | 297 sources = [ |
310 "nacl_message_scanner.cc", | 298 "nacl_message_scanner.cc", |
311 "nacl_message_scanner.h", | 299 "nacl_message_scanner.h", |
312 "ppapi_messages.cc", | 300 "ppapi_messages.cc", |
313 "ppapi_messages.h", | 301 "ppapi_messages.h", |
314 "ppapi_param_traits.cc", | 302 "ppapi_param_traits.cc", |
315 "ppapi_param_traits.h", | 303 "ppapi_param_traits.h", |
316 "raw_var_data.cc", | 304 "raw_var_data.cc", |
317 "raw_var_data.h", | 305 "raw_var_data.h", |
318 "resource_message_params.cc", | 306 "resource_message_params.cc", |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 deps = [ | 349 deps = [ |
362 "//base/test:test_support", | 350 "//base/test:test_support", |
363 "//ipc", | 351 "//ipc", |
364 "//ipc:test_support", | 352 "//ipc:test_support", |
365 "//ppapi/proxy", | 353 "//ppapi/proxy", |
366 "//ppapi/shared_impl", | 354 "//ppapi/shared_impl", |
367 "//testing/gmock", | 355 "//testing/gmock", |
368 "//testing/gtest", | 356 "//testing/gtest", |
369 ] | 357 ] |
370 } | 358 } |
OLD | NEW |