| 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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 "../nacl_irt/manifest_service.h", | 212 "../nacl_irt/manifest_service.h", |
| 213 "../nacl_irt/plugin_startup.cc", | 213 "../nacl_irt/plugin_startup.cc", |
| 214 "../nacl_irt/plugin_startup.h", | 214 "../nacl_irt/plugin_startup.h", |
| 215 "../nacl_irt/ppapi_dispatcher.cc", | 215 "../nacl_irt/ppapi_dispatcher.cc", |
| 216 "../nacl_irt/ppapi_dispatcher.h", | 216 "../nacl_irt/ppapi_dispatcher.h", |
| 217 ] | 217 ] |
| 218 } else { | 218 } else { |
| 219 sources += [ | 219 sources += [ |
| 220 "audio_input_resource.cc", | 220 "audio_input_resource.cc", |
| 221 "audio_input_resource.h", | 221 "audio_input_resource.h", |
| 222 "audio_output_resource.cc", |
| 223 "audio_output_resource.h", |
| 222 "broker_dispatcher.cc", | 224 "broker_dispatcher.cc", |
| 223 "broker_dispatcher.h", | 225 "broker_dispatcher.h", |
| 224 "browser_font_singleton_resource.cc", | 226 "browser_font_singleton_resource.cc", |
| 225 "browser_font_singleton_resource.h", | 227 "browser_font_singleton_resource.h", |
| 226 "device_enumeration_resource_helper.cc", | 228 "device_enumeration_resource_helper.cc", |
| 227 "device_enumeration_resource_helper.h", | 229 "device_enumeration_resource_helper.h", |
| 228 "flash_clipboard_resource.cc", | 230 "flash_clipboard_resource.cc", |
| 229 "flash_clipboard_resource.h", | 231 "flash_clipboard_resource.h", |
| 230 "flash_drm_resource.cc", | 232 "flash_drm_resource.cc", |
| 231 "flash_drm_resource.h", | 233 "flash_drm_resource.h", |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 deps = [ | 388 deps = [ |
| 387 "//base/test:test_support", | 389 "//base/test:test_support", |
| 388 "//ipc", | 390 "//ipc", |
| 389 "//ipc:test_support", | 391 "//ipc:test_support", |
| 390 "//ppapi/proxy", | 392 "//ppapi/proxy", |
| 391 "//ppapi/shared_impl", | 393 "//ppapi/shared_impl", |
| 392 "//testing/gmock", | 394 "//testing/gmock", |
| 393 "//testing/gtest", | 395 "//testing/gtest", |
| 394 ] | 396 ] |
| 395 } | 397 } |
| OLD | NEW |