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 720 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
731 } | 731 } |
732 | 732 |
733 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ] | 733 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ] |
734 | 734 |
735 deps = [ | 735 deps = [ |
736 ":ppapi_c", | 736 ":ppapi_c", |
737 ":ppapi_shared", | 737 ":ppapi_shared", |
738 ":ppapi_ipc", | 738 ":ppapi_ipc", |
739 "//base", | 739 "//base", |
740 "//base/third_party/dynamic_annotations", | 740 "//base/third_party/dynamic_annotations", |
| 741 "//gin", |
741 "//gpu/command_buffer/client:gles2_implementation", | 742 "//gpu/command_buffer/client:gles2_implementation", |
742 "//gpu/ipc", | 743 "//gpu/ipc", |
743 "//media:shared_memory_support", | 744 "//media:shared_memory_support", |
744 "//ipc", | 745 "//ipc", |
745 "//skia", | 746 "//skia", |
746 "//third_party/icu", | 747 "//third_party/icu", |
747 "//ui/events:events_base", | 748 "//ui/events:events_base", |
748 "//ui/surface", | 749 "//ui/surface", |
749 blink_target, | 750 blink_target, |
750 ] | 751 ] |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
811 ":ppapi_shared", | 812 ":ppapi_shared", |
812 "//base/test:test_support", | 813 "//base/test:test_support", |
813 "//ipc", | 814 "//ipc", |
814 "//ipc:test_support", | 815 "//ipc:test_support", |
815 "//testing/gmock", | 816 "//testing/gmock", |
816 "//testing/gtest", | 817 "//testing/gtest", |
817 ] | 818 ] |
818 } | 819 } |
819 | 820 |
820 # TODO(GYP) other targets from ppapi_tests.gyp | 821 # TODO(GYP) other targets from ppapi_tests.gyp |
OLD | NEW |