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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 sources += [ | 202 sources += [ |
203 "../nacl_irt/irt_interfaces.cc", | 203 "../nacl_irt/irt_interfaces.cc", |
204 "../nacl_irt/irt_interfaces.h", | 204 "../nacl_irt/irt_interfaces.h", |
205 "../nacl_irt/irt_pnacl_translator_compile.cc", | 205 "../nacl_irt/irt_pnacl_translator_compile.cc", |
206 "../nacl_irt/irt_pnacl_translator_link.cc", | 206 "../nacl_irt/irt_pnacl_translator_link.cc", |
207 "../nacl_irt/irt_ppapi.cc", | 207 "../nacl_irt/irt_ppapi.cc", |
208 "../nacl_irt/irt_ppapi.h", | 208 "../nacl_irt/irt_ppapi.h", |
209 "../nacl_irt/irt_start.cc", | 209 "../nacl_irt/irt_start.cc", |
210 "../nacl_irt/manifest_service.cc", | 210 "../nacl_irt/manifest_service.cc", |
211 "../nacl_irt/manifest_service.h", | 211 "../nacl_irt/manifest_service.h", |
212 "../nacl_irt/plugin_main.cc", | |
213 "../nacl_irt/plugin_main.h", | |
214 "../nacl_irt/plugin_startup.cc", | 212 "../nacl_irt/plugin_startup.cc", |
215 "../nacl_irt/plugin_startup.h", | 213 "../nacl_irt/plugin_startup.h", |
216 "../nacl_irt/ppapi_dispatcher.cc", | 214 "../nacl_irt/ppapi_dispatcher.cc", |
217 "../nacl_irt/ppapi_dispatcher.h", | 215 "../nacl_irt/ppapi_dispatcher.h", |
218 ] | 216 ] |
219 } else { | 217 } else { |
220 sources += [ | 218 sources += [ |
221 "audio_input_resource.cc", | 219 "audio_input_resource.cc", |
222 "audio_input_resource.h", | 220 "audio_input_resource.h", |
223 "broker_dispatcher.cc", | 221 "broker_dispatcher.cc", |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 deps = [ | 366 deps = [ |
369 "//base/test:test_support", | 367 "//base/test:test_support", |
370 "//ipc", | 368 "//ipc", |
371 "//ipc:test_support", | 369 "//ipc:test_support", |
372 "//ppapi/proxy", | 370 "//ppapi/proxy", |
373 "//ppapi/shared_impl", | 371 "//ppapi/shared_impl", |
374 "//testing/gmock", | 372 "//testing/gmock", |
375 "//testing/gtest", | 373 "//testing/gtest", |
376 ] | 374 ] |
377 } | 375 } |
OLD | NEW |