| 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 config("proxy_implementation") { | 7 config("proxy_implementation") { |
| 8 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ] | 8 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ] |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 "//build/config:precompiled_headers", | 272 "//build/config:precompiled_headers", |
| 273 ] | 273 ] |
| 274 | 274 |
| 275 public_deps = [ | 275 public_deps = [ |
| 276 "//ppapi/proxy:ipc_sources", | 276 "//ppapi/proxy:ipc_sources", |
| 277 ] | 277 ] |
| 278 | 278 |
| 279 deps = [ | 279 deps = [ |
| 280 "//base", | 280 "//base", |
| 281 "//gpu/command_buffer/client:gles2_implementation", | 281 "//gpu/command_buffer/client:gles2_implementation", |
| 282 "//gpu/ipc", | 282 "//gpu/ipc/common", |
| 283 "//ipc", | 283 "//ipc", |
| 284 "//media:shared_memory_support", | 284 "//media:shared_memory_support", |
| 285 "//ppapi/c", | 285 "//ppapi/c", |
| 286 "//ppapi/shared_impl", | 286 "//ppapi/shared_impl", |
| 287 ] | 287 ] |
| 288 | 288 |
| 289 if (!is_nacl) { | 289 if (!is_nacl) { |
| 290 deps += [ | 290 deps += [ |
| 291 "//base/third_party/dynamic_annotations", | 291 "//base/third_party/dynamic_annotations", |
| 292 "//gin", | 292 "//gin", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 "var_serialization_rules.h", | 336 "var_serialization_rules.h", |
| 337 ] | 337 ] |
| 338 if (is_nacl) { | 338 if (is_nacl) { |
| 339 sources -= [ "serialized_flash_menu.cc" ] | 339 sources -= [ "serialized_flash_menu.cc" ] |
| 340 } | 340 } |
| 341 | 341 |
| 342 configs += [ ":proxy_implementation" ] | 342 configs += [ ":proxy_implementation" ] |
| 343 | 343 |
| 344 deps = [ | 344 deps = [ |
| 345 "//base", | 345 "//base", |
| 346 "//gpu/ipc", | 346 "//gpu/ipc/common", |
| 347 "//ipc", | 347 "//ipc", |
| 348 "//ppapi/c", | 348 "//ppapi/c", |
| 349 "//ppapi/shared_impl", | 349 "//ppapi/shared_impl", |
| 350 ] | 350 ] |
| 351 if (!is_nacl) { | 351 if (!is_nacl) { |
| 352 deps += [ "//skia" ] | 352 deps += [ "//skia" ] |
| 353 } | 353 } |
| 354 } | 354 } |
| 355 | 355 |
| 356 source_set("test_support") { | 356 source_set("test_support") { |
| 357 testonly = true | 357 testonly = true |
| 358 | 358 |
| 359 sources = [ | 359 sources = [ |
| 360 "ppapi_proxy_test.cc", | 360 "ppapi_proxy_test.cc", |
| 361 "ppapi_proxy_test.h", | 361 "ppapi_proxy_test.h", |
| 362 "resource_message_test_sink.cc", | 362 "resource_message_test_sink.cc", |
| 363 "resource_message_test_sink.h", | 363 "resource_message_test_sink.h", |
| 364 ] | 364 ] |
| 365 | 365 |
| 366 deps = [ | 366 deps = [ |
| 367 "//base/test:test_support", | 367 "//base/test:test_support", |
| 368 "//ipc", | 368 "//ipc", |
| 369 "//ipc:test_support", | 369 "//ipc:test_support", |
| 370 "//ppapi/proxy", | 370 "//ppapi/proxy", |
| 371 "//ppapi/shared_impl", | 371 "//ppapi/shared_impl", |
| 372 "//testing/gmock", | 372 "//testing/gmock", |
| 373 "//testing/gtest", | 373 "//testing/gtest", |
| 374 ] | 374 ] |
| 375 } | 375 } |
| OLD | NEW |