| 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 "video_decoder_resource.cc", | 183 "video_decoder_resource.cc", |
| 184 "video_decoder_resource.h", | 184 "video_decoder_resource.h", |
| 185 "video_destination_resource.cc", | 185 "video_destination_resource.cc", |
| 186 "video_destination_resource.h", | 186 "video_destination_resource.h", |
| 187 "video_encoder_resource.cc", | 187 "video_encoder_resource.cc", |
| 188 "video_encoder_resource.h", | 188 "video_encoder_resource.h", |
| 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 "vpn_provider_resource.cc", |
| 194 "vpn_provider_resource.h", |
| 193 "websocket_resource.cc", | 195 "websocket_resource.cc", |
| 194 "websocket_resource.h", | 196 "websocket_resource.h", |
| 195 ] | 197 ] |
| 196 | 198 |
| 197 if (is_nacl) { | 199 if (is_nacl) { |
| 198 sources += [ | 200 sources += [ |
| 199 "../nacl_irt/irt_interfaces.cc", | 201 "../nacl_irt/irt_interfaces.cc", |
| 200 "../nacl_irt/irt_interfaces.h", | 202 "../nacl_irt/irt_interfaces.h", |
| 201 "../nacl_irt/irt_pnacl_translator_compile.cc", | 203 "../nacl_irt/irt_pnacl_translator_compile.cc", |
| 202 "../nacl_irt/irt_pnacl_translator_link.cc", | 204 "../nacl_irt/irt_pnacl_translator_link.cc", |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 deps = [ | 360 deps = [ |
| 359 "//base/test:test_support", | 361 "//base/test:test_support", |
| 360 "//ipc", | 362 "//ipc", |
| 361 "//ipc:test_support", | 363 "//ipc:test_support", |
| 362 "//ppapi/proxy", | 364 "//ppapi/proxy", |
| 363 "//ppapi/shared_impl", | 365 "//ppapi/shared_impl", |
| 364 "//testing/gmock", | 366 "//testing/gmock", |
| 365 "//testing/gtest", | 367 "//testing/gtest", |
| 366 ] | 368 ] |
| 367 } | 369 } |
| OLD | NEW |