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 import("//build/config/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
6 | 6 |
7 config("proxy_implementation") { | 7 config("proxy_implementation") { |
8 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ] | 8 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ] |
9 } | 9 } |
10 | 10 |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 "video_decoder_resource.cc", | 187 "video_decoder_resource.cc", |
188 "video_decoder_resource.h", | 188 "video_decoder_resource.h", |
189 "video_destination_resource.cc", | 189 "video_destination_resource.cc", |
190 "video_destination_resource.h", | 190 "video_destination_resource.h", |
191 "video_encoder_resource.cc", | 191 "video_encoder_resource.cc", |
192 "video_encoder_resource.h", | 192 "video_encoder_resource.h", |
193 "video_frame_resource.cc", | 193 "video_frame_resource.cc", |
194 "video_frame_resource.h", | 194 "video_frame_resource.h", |
195 "video_source_resource.cc", | 195 "video_source_resource.cc", |
196 "video_source_resource.h", | 196 "video_source_resource.h", |
| 197 "vpn_provider_resource.cc", |
| 198 "vpn_provider_resource.h", |
197 "websocket_resource.cc", | 199 "websocket_resource.cc", |
198 "websocket_resource.h", | 200 "websocket_resource.h", |
199 ] | 201 ] |
200 | 202 |
201 if (is_nacl) { | 203 if (is_nacl) { |
202 sources += [ | 204 sources += [ |
203 "../nacl_irt/irt_interfaces.cc", | 205 "../nacl_irt/irt_interfaces.cc", |
204 "../nacl_irt/irt_interfaces.h", | 206 "../nacl_irt/irt_interfaces.h", |
205 "../nacl_irt/irt_pnacl_translator_compile.cc", | 207 "../nacl_irt/irt_pnacl_translator_compile.cc", |
206 "../nacl_irt/irt_pnacl_translator_link.cc", | 208 "../nacl_irt/irt_pnacl_translator_link.cc", |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 deps = [ | 370 deps = [ |
369 "//base/test:test_support", | 371 "//base/test:test_support", |
370 "//ipc", | 372 "//ipc", |
371 "//ipc:test_support", | 373 "//ipc:test_support", |
372 "//ppapi/proxy", | 374 "//ppapi/proxy", |
373 "//ppapi/shared_impl", | 375 "//ppapi/shared_impl", |
374 "//testing/gmock", | 376 "//testing/gmock", |
375 "//testing/gtest", | 377 "//testing/gtest", |
376 ] | 378 ] |
377 } | 379 } |
OLD | NEW |