| 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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 ":proxy_implementation", | 273 ":proxy_implementation", |
| 274 "//build/config:precompiled_headers", | 274 "//build/config:precompiled_headers", |
| 275 ] | 275 ] |
| 276 | 276 |
| 277 public_deps = [ | 277 public_deps = [ |
| 278 "//ppapi/proxy:ipc_sources", | 278 "//ppapi/proxy:ipc_sources", |
| 279 ] | 279 ] |
| 280 | 280 |
| 281 deps = [ | 281 deps = [ |
| 282 "//base", | 282 "//base", |
| 283 "//gpu/command_buffer/client:client_sources_for_ppapi", | 283 "//gpu/command_buffer/client:gles2_implementation", |
| 284 "//gpu/ipc/common:command_buffer_traits", |
| 284 "//ipc", | 285 "//ipc", |
| 285 "//media:shared_memory_support", | 286 "//media:shared_memory_support", |
| 286 "//mojo/edk/system", | 287 "//mojo/edk/system", |
| 287 "//ppapi/c", | 288 "//ppapi/c", |
| 288 "//ppapi/shared_impl", | 289 "//ppapi/shared_impl", |
| 289 ] | 290 ] |
| 290 | 291 |
| 291 if (!is_nacl) { | 292 if (!is_nacl) { |
| 292 deps += [ | 293 deps += [ |
| 293 "//base/third_party/dynamic_annotations", | 294 "//base/third_party/dynamic_annotations", |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 deps = [ | 372 deps = [ |
| 372 "//base/test:test_support", | 373 "//base/test:test_support", |
| 373 "//ipc", | 374 "//ipc", |
| 374 "//ipc:test_support", | 375 "//ipc:test_support", |
| 375 "//ppapi/proxy", | 376 "//ppapi/proxy", |
| 376 "//ppapi/shared_impl", | 377 "//ppapi/shared_impl", |
| 377 "//testing/gmock", | 378 "//testing/gmock", |
| 378 "//testing/gtest", | 379 "//testing/gtest", |
| 379 ] | 380 ] |
| 380 } | 381 } |
| OLD | NEW |