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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 "shared_impl/resource_tracker.cc", | 185 "shared_impl/resource_tracker.cc", |
186 "shared_impl/resource_tracker.h", | 186 "shared_impl/resource_tracker.h", |
187 "shared_impl/resource_var.cc", | 187 "shared_impl/resource_var.cc", |
188 "shared_impl/resource_var.h", | 188 "shared_impl/resource_var.h", |
189 "shared_impl/scoped_pp_resource.cc", | 189 "shared_impl/scoped_pp_resource.cc", |
190 "shared_impl/scoped_pp_resource.h", | 190 "shared_impl/scoped_pp_resource.h", |
191 "shared_impl/scoped_pp_var.cc", | 191 "shared_impl/scoped_pp_var.cc", |
192 "shared_impl/scoped_pp_var.h", | 192 "shared_impl/scoped_pp_var.h", |
193 "shared_impl/socket_option_data.cc", | 193 "shared_impl/socket_option_data.cc", |
194 "shared_impl/socket_option_data.h", | 194 "shared_impl/socket_option_data.h", |
| 195 "shared_impl/test_harness_utils.cc", |
| 196 "shared_impl/test_harness_utils.h", |
195 "shared_impl/thread_aware_callback.cc", | 197 "shared_impl/thread_aware_callback.cc", |
196 "shared_impl/thread_aware_callback.h", | 198 "shared_impl/thread_aware_callback.h", |
197 "shared_impl/time_conversion.cc", | 199 "shared_impl/time_conversion.cc", |
198 "shared_impl/time_conversion.h", | 200 "shared_impl/time_conversion.h", |
199 "shared_impl/tracked_callback.cc", | 201 "shared_impl/tracked_callback.cc", |
200 "shared_impl/tracked_callback.h", | 202 "shared_impl/tracked_callback.h", |
201 "shared_impl/url_request_info_data.cc", | 203 "shared_impl/url_request_info_data.cc", |
202 "shared_impl/url_request_info_data.h", | 204 "shared_impl/url_request_info_data.h", |
203 "shared_impl/url_response_info_data.cc", | 205 "shared_impl/url_response_info_data.cc", |
204 "shared_impl/url_response_info_data.h", | 206 "shared_impl/url_response_info_data.h", |
(...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
809 ":ppapi_shared", | 811 ":ppapi_shared", |
810 "//base/test:test_support", | 812 "//base/test:test_support", |
811 "//ipc", | 813 "//ipc", |
812 "//ipc:test_support", | 814 "//ipc:test_support", |
813 "//testing/gmock", | 815 "//testing/gmock", |
814 "//testing/gtest", | 816 "//testing/gtest", |
815 ] | 817 ] |
816 } | 818 } |
817 | 819 |
818 # TODO(GYP) other targets from ppapi_tests.gyp | 820 # TODO(GYP) other targets from ppapi_tests.gyp |
OLD | NEW |