| 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 component("shared_impl") { | 7 component("shared_impl") { |
| 8 output_name = "ppapi_shared" | 8 output_name = "ppapi_shared" |
| 9 | 9 |
| 10 sources = [ | 10 sources = [ |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "ppapi_preferences.h", | 56 "ppapi_preferences.h", |
| 57 "ppapi_switches.cc", | 57 "ppapi_switches.cc", |
| 58 "ppapi_switches.h", | 58 "ppapi_switches.h", |
| 59 "ppb_audio_config_shared.cc", | 59 "ppb_audio_config_shared.cc", |
| 60 "ppb_audio_config_shared.h", | 60 "ppb_audio_config_shared.h", |
| 61 "ppb_audio_shared.cc", | 61 "ppb_audio_shared.cc", |
| 62 "ppb_audio_shared.h", | 62 "ppb_audio_shared.h", |
| 63 "ppb_crypto_shared.cc", | 63 "ppb_crypto_shared.cc", |
| 64 "ppb_device_ref_shared.cc", | 64 "ppb_device_ref_shared.cc", |
| 65 "ppb_device_ref_shared.h", | 65 "ppb_device_ref_shared.h", |
| 66 "ppb_flash_font_file_shared.h", |
| 66 "ppb_gamepad_shared.cc", | 67 "ppb_gamepad_shared.cc", |
| 67 "ppb_gamepad_shared.h", | 68 "ppb_gamepad_shared.h", |
| 68 "ppb_graphics_3d_shared.cc", | 69 "ppb_graphics_3d_shared.cc", |
| 69 "ppb_graphics_3d_shared.h", | 70 "ppb_graphics_3d_shared.h", |
| 70 "ppb_image_data_shared.cc", | 71 "ppb_image_data_shared.cc", |
| 71 "ppb_image_data_shared.h", | 72 "ppb_image_data_shared.h", |
| 72 "ppb_input_event_shared.cc", | 73 "ppb_input_event_shared.cc", |
| 73 "ppb_input_event_shared.h", | 74 "ppb_input_event_shared.h", |
| 74 "ppb_instance_shared.cc", | 75 "ppb_instance_shared.cc", |
| 75 "ppb_instance_shared.h", | 76 "ppb_instance_shared.h", |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 deps = [ | 210 deps = [ |
| 210 "//base/test:test_support", | 211 "//base/test:test_support", |
| 211 "//ipc", | 212 "//ipc", |
| 212 "//ipc:test_support", | 213 "//ipc:test_support", |
| 213 "//ppapi/proxy", | 214 "//ppapi/proxy", |
| 214 "//ppapi/shared_impl", | 215 "//ppapi/shared_impl", |
| 215 "//testing/gmock", | 216 "//testing/gmock", |
| 216 "//testing/gtest", | 217 "//testing/gtest", |
| 217 ] | 218 ] |
| 218 } | 219 } |
| OLD | NEW |