OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 gypi_values = exec_script( | 5 gypi_values = exec_script( |
6 "//build/gypi_to_gn.py", | 6 "//build/gypi_to_gn.py", |
7 [ rebase_path("ppapi_sources.gypi") ], | 7 [ rebase_path("ppapi_sources.gypi") ], |
8 "scope", | 8 "scope", |
9 [ "ppapi_sources.gypi" ]) | 9 [ "ppapi_sources.gypi" ]) |
10 | 10 |
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
450 "proxy/serialized_flash_menu.h", | 450 "proxy/serialized_flash_menu.h", |
451 "proxy/serialized_handle.cc", | 451 "proxy/serialized_handle.cc", |
452 "proxy/serialized_handle.h", | 452 "proxy/serialized_handle.h", |
453 "proxy/serialized_structs.cc", | 453 "proxy/serialized_structs.cc", |
454 "proxy/serialized_structs.h", | 454 "proxy/serialized_structs.h", |
455 "proxy/serialized_var.cc", | 455 "proxy/serialized_var.cc", |
456 "proxy/serialized_var.h", | 456 "proxy/serialized_var.h", |
457 "proxy/var_serialization_rules.h", | 457 "proxy/var_serialization_rules.h", |
458 ] | 458 ] |
459 | 459 |
| 460 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ] |
| 461 |
460 deps = [ | 462 deps = [ |
461 ":ppapi_c", | 463 ":ppapi_c", |
462 ":ppapi_shared", | 464 ":ppapi_shared", |
463 "//base", | 465 "//base", |
464 "//gpu/ipc", | 466 "//gpu/ipc", |
465 "//ipc", | 467 "//ipc", |
466 "//skia", | 468 "//skia", |
467 "//ui/events/ipc", | 469 "//ui/events/ipc", |
468 ] | 470 ] |
469 | 471 |
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
803 ":ppapi_shared", | 805 ":ppapi_shared", |
804 "//base/test:test_support", | 806 "//base/test:test_support", |
805 "//ipc", | 807 "//ipc", |
806 "//ipc:test_support", | 808 "//ipc:test_support", |
807 "//testing/gmock", | 809 "//testing/gmock", |
808 "//testing/gtest", | 810 "//testing/gtest", |
809 ] | 811 ] |
810 } | 812 } |
811 | 813 |
812 # TODO(GYP) other targets from ppapi_tests.gyp | 814 # TODO(GYP) other targets from ppapi_tests.gyp |
OLD | NEW |