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 755 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
766 ":ppapi_proxy", | 766 ":ppapi_proxy", |
767 ":ppapi_shared", | 767 ":ppapi_shared", |
768 "//base", | 768 "//base", |
769 "//ipc", | 769 "//ipc", |
770 "//ui/surface", | 770 "//ui/surface", |
771 "//url", | 771 "//url", |
772 #'../media/media.gyp:shared_memory_support', TODO(GYP) | 772 #'../media/media.gyp:shared_memory_support', TODO(GYP) |
773 ] | 773 ] |
774 } | 774 } |
775 | 775 |
| 776 static_library("ppapi_unittest_shared") { |
| 777 sources = [ |
| 778 "proxy/ppapi_proxy_test.cc", |
| 779 "proxy/ppapi_proxy_test.h", |
| 780 "proxy/resource_message_test_sink.cc", |
| 781 "proxy/resource_message_test_sink.h", |
| 782 "shared_impl/test_globals.cc", |
| 783 "shared_impl/test_globals.h", |
| 784 "shared_impl/unittest_utils.cc", |
| 785 "shared_impl/unittest_utils.h", |
| 786 ] |
| 787 |
| 788 deps = [ |
| 789 ":ppapi_proxy", |
| 790 ":ppapi_shared", |
| 791 "//base/test:test_support", |
| 792 "//ipc", |
| 793 "//ipc:test_support", |
| 794 "//testing/gmock", |
| 795 "//testing/gtest", |
| 796 ] |
| 797 } |
| 798 |
776 # TODO(GYP) other targets from ppapi_tests.gyp | 799 # TODO(GYP) other targets from ppapi_tests.gyp |
OLD | NEW |