| 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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 | 280 |
| 281 deps = [ | 281 deps = [ |
| 282 "//base", | 282 "//base", |
| 283 "//gpu/command_buffer/client:gles2_implementation", | 283 "//gpu/command_buffer/client:gles2_implementation", |
| 284 "//gpu/ipc/common:command_buffer_traits", | 284 "//gpu/ipc/common:command_buffer_traits", |
| 285 "//ipc", | 285 "//ipc", |
| 286 "//media:shared_memory_support", | 286 "//media:shared_memory_support", |
| 287 "//mojo/edk/system", | 287 "//mojo/edk/system", |
| 288 "//ppapi/c", | 288 "//ppapi/c", |
| 289 "//ppapi/shared_impl", | 289 "//ppapi/shared_impl", |
| 290 "//ui/gfx/geometry", |
| 291 "//ui/gfx/ipc/geometry", |
| 290 ] | 292 ] |
| 291 | 293 |
| 292 if (!is_nacl) { | 294 if (!is_nacl) { |
| 293 deps += [ | 295 deps += [ |
| 294 "//base/third_party/dynamic_annotations", | 296 "//base/third_party/dynamic_annotations", |
| 295 "//gin", | 297 "//gin", |
| 296 "//skia", | 298 "//skia", |
| 297 "//ui/events:events_base", | 299 "//ui/events:events_base", |
| 298 "//ui/surface", | 300 "//ui/surface", |
| 299 ] | 301 ] |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 deps = [ | 374 deps = [ |
| 373 "//base/test:test_support", | 375 "//base/test:test_support", |
| 374 "//ipc", | 376 "//ipc", |
| 375 "//ipc:test_support", | 377 "//ipc:test_support", |
| 376 "//ppapi/proxy", | 378 "//ppapi/proxy", |
| 377 "//ppapi/shared_impl", | 379 "//ppapi/shared_impl", |
| 378 "//testing/gmock", | 380 "//testing/gmock", |
| 379 "//testing/gtest", | 381 "//testing/gtest", |
| 380 ] | 382 ] |
| 381 } | 383 } |
| OLD | NEW |