| 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 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 if (is_nacl) { | 337 if (is_nacl) { |
| 338 sources -= [ "serialized_flash_menu.cc" ] | 338 sources -= [ "serialized_flash_menu.cc" ] |
| 339 } | 339 } |
| 340 | 340 |
| 341 configs += [ ":proxy_implementation" ] | 341 configs += [ ":proxy_implementation" ] |
| 342 | 342 |
| 343 deps = [ | 343 deps = [ |
| 344 "//base", | 344 "//base", |
| 345 "//gpu/ipc/common:command_buffer_traits", | 345 "//gpu/ipc/common:command_buffer_traits", |
| 346 "//ipc", | 346 "//ipc", |
| 347 "//ipc/mojo", |
| 348 "//mojo/edk/system", |
| 347 "//ppapi/c", | 349 "//ppapi/c", |
| 348 "//ppapi/shared_impl", | 350 "//ppapi/shared_impl", |
| 349 ] | 351 ] |
| 350 if (!is_nacl) { | 352 if (!is_nacl) { |
| 351 deps += [ "//skia" ] | 353 deps += [ "//skia" ] |
| 352 } | 354 } |
| 353 } | 355 } |
| 354 | 356 |
| 355 source_set("test_support") { | 357 source_set("test_support") { |
| 356 testonly = true | 358 testonly = true |
| (...skipping 11 matching lines...) Expand all Loading... |
| 368 deps = [ | 370 deps = [ |
| 369 "//base/test:test_support", | 371 "//base/test:test_support", |
| 370 "//ipc", | 372 "//ipc", |
| 371 "//ipc:test_support", | 373 "//ipc:test_support", |
| 372 "//ppapi/proxy", | 374 "//ppapi/proxy", |
| 373 "//ppapi/shared_impl", | 375 "//ppapi/shared_impl", |
| 374 "//testing/gmock", | 376 "//testing/gmock", |
| 375 "//testing/gtest", | 377 "//testing/gtest", |
| 376 ] | 378 ] |
| 377 } | 379 } |
| OLD | NEW |