| 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", | |
| 201 "../nacl_irt/irt_ppapi.cc", | 199 "../nacl_irt/irt_ppapi.cc", |
| 202 "../nacl_irt/irt_ppapi.h", | 200 "../nacl_irt/irt_ppapi.h", |
| 203 "../nacl_irt/irt_start.cc", | 201 "../nacl_irt/irt_start.cc", |
| 204 "../nacl_irt/manifest_service.cc", | 202 "../nacl_irt/manifest_service.cc", |
| 205 "../nacl_irt/manifest_service.h", | 203 "../nacl_irt/manifest_service.h", |
| 206 "../nacl_irt/plugin_main.cc", | 204 "../nacl_irt/plugin_main.cc", |
| 207 "../nacl_irt/plugin_main.h", | 205 "../nacl_irt/plugin_main.h", |
| 208 "../nacl_irt/plugin_startup.cc", | 206 "../nacl_irt/plugin_startup.cc", |
| 209 "../nacl_irt/plugin_startup.h", | 207 "../nacl_irt/plugin_startup.h", |
| 210 "../nacl_irt/ppapi_dispatcher.cc", | 208 "../nacl_irt/ppapi_dispatcher.cc", |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 deps = [ | 356 deps = [ |
| 359 "//base/test:test_support", | 357 "//base/test:test_support", |
| 360 "//ipc", | 358 "//ipc", |
| 361 "//ipc:test_support", | 359 "//ipc:test_support", |
| 362 "//ppapi/proxy", | 360 "//ppapi/proxy", |
| 363 "//ppapi/shared_impl", | 361 "//ppapi/shared_impl", |
| 364 "//testing/gmock", | 362 "//testing/gmock", |
| 365 "//testing/gtest", | 363 "//testing/gtest", |
| 366 ] | 364 ] |
| 367 } | 365 } |
| OLD | NEW |