| 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") |
| 6 |
| 5 config("proxy_implementation") { | 7 config("proxy_implementation") { |
| 6 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ] | 8 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ] |
| 7 } | 9 } |
| 8 | 10 |
| 9 component("proxy") { | 11 component("proxy") { |
| 10 output_name = "ppapi_proxy" | 12 output_name = "ppapi_proxy" |
| 11 | 13 |
| 12 sources = [ | 14 sources = [ |
| 13 # Take some standalone files from the C++ wrapper allowing us to more | 15 # Take some standalone files from the C++ wrapper allowing us to more |
| 14 # easily make async callbacks in the proxy. We can't depend on the | 16 # easily make async callbacks in the proxy. We can't depend on the |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 | 276 |
| 275 deps = [ | 277 deps = [ |
| 276 "//base", | 278 "//base", |
| 277 "//gpu/command_buffer/client:gles2_implementation", | 279 "//gpu/command_buffer/client:gles2_implementation", |
| 278 "//gpu/ipc", | 280 "//gpu/ipc", |
| 279 "//ipc", | 281 "//ipc", |
| 280 "//media:shared_memory_support", | 282 "//media:shared_memory_support", |
| 281 "//ppapi/c", | 283 "//ppapi/c", |
| 282 "//ppapi/proxy:ipc_sources", | 284 "//ppapi/proxy:ipc_sources", |
| 283 "//ppapi/shared_impl", | 285 "//ppapi/shared_impl", |
| 284 "//third_party/icu", | |
| 285 ] | 286 ] |
| 286 | 287 |
| 287 if (!is_nacl) { | 288 if (!is_nacl) { |
| 288 deps += [ | 289 deps += [ |
| 289 "//base/third_party/dynamic_annotations", | 290 "//base/third_party/dynamic_annotations", |
| 290 "//gin", | 291 "//gin", |
| 291 "//skia", | 292 "//skia", |
| 292 "//ui/events:events_base", | 293 "//ui/events:events_base", |
| 293 "//ui/surface", | 294 "//ui/surface", |
| 294 ] | 295 ] |
| 295 } | 296 } |
| 297 |
| 298 if (!is_nacl_nonsfi) { |
| 299 deps += [ "//third_party/icu" ] |
| 300 } |
| 296 } | 301 } |
| 297 | 302 |
| 298 group("ipc") { | 303 group("ipc") { |
| 299 if (is_component_build) { | 304 if (is_component_build) { |
| 300 public_deps = [ | 305 public_deps = [ |
| 301 "//ppapi/proxy", | 306 "//ppapi/proxy", |
| 302 ] | 307 ] |
| 303 } else { | 308 } else { |
| 304 public_deps = [ | 309 public_deps = [ |
| 305 ":ipc_sources", | 310 ":ipc_sources", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 deps = [ | 365 deps = [ |
| 361 "//base/test:test_support", | 366 "//base/test:test_support", |
| 362 "//ipc", | 367 "//ipc", |
| 363 "//ipc:test_support", | 368 "//ipc:test_support", |
| 364 "//ppapi/proxy", | 369 "//ppapi/proxy", |
| 365 "//ppapi/shared_impl", | 370 "//ppapi/shared_impl", |
| 366 "//testing/gmock", | 371 "//testing/gmock", |
| 367 "//testing/gtest", | 372 "//testing/gtest", |
| 368 ] | 373 ] |
| 369 } | 374 } |
| OLD | NEW |