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