| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'ppapi_shared', | 8 'target_name': 'ppapi_shared', |
| 9 'type': 'static_library', | 9 'type': '<(component)', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| 11 'ppapi.gyp:ppapi_c', | 11 'ppapi.gyp:ppapi_c', |
| 12 '../base/base.gyp:base', | 12 '../base/base.gyp:base', |
| 13 '../base/base.gyp:base_i18n', |
| 13 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 14 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 14 '../build/temp_gyp/googleurl.gyp:googleurl', | 15 '../build/temp_gyp/googleurl.gyp:googleurl', |
| 15 '../gpu/gpu.gyp:gles2_implementation', | 16 '../gpu/gpu.gyp:gles2_implementation', |
| 16 '../skia/skia.gyp:skia', | 17 '../skia/skia.gyp:skia', |
| 17 '../third_party/icu/icu.gyp:icuuc', | 18 '../third_party/icu/icu.gyp:icuuc', |
| 18 '../ui/gfx/surface/surface.gyp:surface', | 19 '../ui/gfx/surface/surface.gyp:surface', |
| 19 ], | 20 ], |
| 21 'defines': [ |
| 22 'PPAPI_SHARED_IMPLEMENTATION', |
| 23 'PPAPI_THUNK_IMPLEMENTATION', |
| 24 ], |
| 20 'include_dirs': [ | 25 'include_dirs': [ |
| 21 '..', | 26 '..', |
| 22 ], | 27 ], |
| 23 'export_dependent_settings': [ | 28 'export_dependent_settings': [ |
| 24 '../base/base.gyp:base', | 29 '../base/base.gyp:base', |
| 25 ], | 30 ], |
| 26 'sources': [ | 31 'sources': [ |
| 27 'shared_impl/audio_config_impl.cc', | 32 'shared_impl/audio_config_impl.cc', |
| 28 'shared_impl/audio_config_impl.h', | 33 'shared_impl/audio_config_impl.h', |
| 29 'shared_impl/audio_impl.cc', | 34 'shared_impl/audio_impl.cc', |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 'thunk/ppb_video_layer_api.h', | 163 'thunk/ppb_video_layer_api.h', |
| 159 'thunk/ppb_video_layer_thunk.cc', | 164 'thunk/ppb_video_layer_thunk.cc', |
| 160 'thunk/ppb_widget_api.h', | 165 'thunk/ppb_widget_api.h', |
| 161 'thunk/ppb_widget_thunk.cc', | 166 'thunk/ppb_widget_thunk.cc', |
| 162 'thunk/ppb_zoom_thunk.cc', | 167 'thunk/ppb_zoom_thunk.cc', |
| 163 'thunk/thunk.h', | 168 'thunk/thunk.h', |
| 164 ], | 169 ], |
| 165 }, | 170 }, |
| 166 ], | 171 ], |
| 167 } | 172 } |
| OLD | NEW |