OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 component("shared_impl") { | 5 component("shared_impl") { |
6 output_name = "ppapi_shared" | 6 output_name = "ppapi_shared" |
7 | 7 |
8 sources = [ | 8 sources = [ |
9 "array_var.cc", | 9 "array_var.cc", |
10 "array_var.h", | 10 "array_var.h", |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 "resource_tracker.cc", | 94 "resource_tracker.cc", |
95 "resource_tracker.h", | 95 "resource_tracker.h", |
96 "resource_var.cc", | 96 "resource_var.cc", |
97 "resource_var.h", | 97 "resource_var.h", |
98 "scoped_pp_resource.cc", | 98 "scoped_pp_resource.cc", |
99 "scoped_pp_resource.h", | 99 "scoped_pp_resource.h", |
100 "scoped_pp_var.cc", | 100 "scoped_pp_var.cc", |
101 "scoped_pp_var.h", | 101 "scoped_pp_var.h", |
102 "socket_option_data.cc", | 102 "socket_option_data.cc", |
103 "socket_option_data.h", | 103 "socket_option_data.h", |
104 "test_harness_utils.cc", | |
105 "test_harness_utils.h", | |
106 "thread_aware_callback.cc", | 104 "thread_aware_callback.cc", |
107 "thread_aware_callback.h", | 105 "thread_aware_callback.h", |
108 "time_conversion.cc", | 106 "time_conversion.cc", |
109 "time_conversion.h", | 107 "time_conversion.h", |
110 "tracked_callback.cc", | 108 "tracked_callback.cc", |
111 "tracked_callback.h", | 109 "tracked_callback.h", |
112 "url_request_info_data.cc", | 110 "url_request_info_data.cc", |
113 "url_request_info_data.h", | 111 "url_request_info_data.h", |
114 "url_response_info_data.cc", | 112 "url_response_info_data.cc", |
115 "url_response_info_data.h", | 113 "url_response_info_data.h", |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 deps = [ | 200 deps = [ |
203 "//base/test:test_support", | 201 "//base/test:test_support", |
204 "//ipc", | 202 "//ipc", |
205 "//ipc:test_support", | 203 "//ipc:test_support", |
206 "//ppapi/proxy", | 204 "//ppapi/proxy", |
207 "//ppapi/shared_impl", | 205 "//ppapi/shared_impl", |
208 "//testing/gmock", | 206 "//testing/gmock", |
209 "//testing/gtest", | 207 "//testing/gtest", |
210 ] | 208 ] |
211 } | 209 } |
OLD | NEW |