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 config("proxy_implementation") { | 5 config("proxy_implementation") { |
6 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ] | 6 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ] |
7 } | 7 } |
8 | 8 |
9 component("proxy") { | 9 component("proxy") { |
10 output_name = "ppapi_proxy" | 10 output_name = "ppapi_proxy" |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 "video_frame_resource.cc", | 189 "video_frame_resource.cc", |
190 "video_frame_resource.h", | 190 "video_frame_resource.h", |
191 "video_source_resource.cc", | 191 "video_source_resource.cc", |
192 "video_source_resource.h", | 192 "video_source_resource.h", |
193 "websocket_resource.cc", | 193 "websocket_resource.cc", |
194 "websocket_resource.h", | 194 "websocket_resource.h", |
195 ] | 195 ] |
196 | 196 |
197 if (is_nacl) { | 197 if (is_nacl) { |
198 sources += [ | 198 sources += [ |
| 199 "../nacl_irt/irt_interfaces.cc", |
| 200 "../nacl_irt/irt_interfaces.h", |
199 "../nacl_irt/irt_ppapi.cc", | 201 "../nacl_irt/irt_ppapi.cc", |
200 "../nacl_irt/irt_ppapi.h", | 202 "../nacl_irt/irt_ppapi.h", |
201 "../nacl_irt/irt_start.cc", | 203 "../nacl_irt/irt_start.cc", |
202 "../nacl_irt/manifest_service.cc", | 204 "../nacl_irt/manifest_service.cc", |
203 "../nacl_irt/manifest_service.h", | 205 "../nacl_irt/manifest_service.h", |
204 "../nacl_irt/plugin_main.cc", | 206 "../nacl_irt/plugin_main.cc", |
205 "../nacl_irt/plugin_main.h", | 207 "../nacl_irt/plugin_main.h", |
206 "../nacl_irt/plugin_startup.cc", | 208 "../nacl_irt/plugin_startup.cc", |
207 "../nacl_irt/plugin_startup.h", | 209 "../nacl_irt/plugin_startup.h", |
208 "../nacl_irt/ppapi_dispatcher.cc", | 210 "../nacl_irt/ppapi_dispatcher.cc", |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 deps = [ | 358 deps = [ |
357 "//base/test:test_support", | 359 "//base/test:test_support", |
358 "//ipc", | 360 "//ipc", |
359 "//ipc:test_support", | 361 "//ipc:test_support", |
360 "//ppapi/proxy", | 362 "//ppapi/proxy", |
361 "//ppapi/shared_impl", | 363 "//ppapi/shared_impl", |
362 "//testing/gmock", | 364 "//testing/gmock", |
363 "//testing/gtest", | 365 "//testing/gtest", |
364 ] | 366 ] |
365 } | 367 } |
OLD | NEW |