| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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': '<(component)', | 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/base.gyp:base_i18n', |
| 14 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 14 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 15 '../build/temp_gyp/googleurl.gyp:googleurl', | 15 '../build/temp_gyp/googleurl.gyp:googleurl', |
| 16 '../gpu/gpu.gyp:gles2_implementation', | 16 '../gpu/gpu.gyp:gles2_implementation', |
| 17 '../net/net.gyp:net', | 17 '../net/net.gyp:net', |
| 18 '../skia/skia.gyp:skia', | 18 '../skia/skia.gyp:skia', |
| 19 '../third_party/icu/icu.gyp:icuuc', | 19 '../third_party/icu/icu.gyp:icuuc', |
| 20 # TODO(ananta) : The WebKit dependency needs to move to a new target for
NACL. |
| 21 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
| 20 '../ui/gfx/surface/surface.gyp:surface', | 22 '../ui/gfx/surface/surface.gyp:surface', |
| 21 ], | 23 ], |
| 22 'defines': [ | 24 'defines': [ |
| 23 'PPAPI_SHARED_IMPLEMENTATION', | 25 'PPAPI_SHARED_IMPLEMENTATION', |
| 24 'PPAPI_THUNK_IMPLEMENTATION', | 26 'PPAPI_THUNK_IMPLEMENTATION', |
| 25 ], | 27 ], |
| 26 'include_dirs': [ | 28 'include_dirs': [ |
| 27 '..', | 29 '..', |
| 28 ], | 30 ], |
| 29 'export_dependent_settings': [ | 31 'export_dependent_settings': [ |
| 30 '../base/base.gyp:base', | 32 '../base/base.gyp:base', |
| 33 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
|
| 34 ], |
| 35 'conditions': [ |
| 36 ['OS=="mac"', { |
| 37 'link_settings': { |
| 38 'libraries': [ |
| 39 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', |
| 40 ], |
| 41 }, |
| 42 }], |
| 31 ], | 43 ], |
| 32 'sources': [ | 44 'sources': [ |
| 33 'shared_impl/callback_tracker.cc', | 45 'shared_impl/callback_tracker.cc', |
| 34 'shared_impl/callback_tracker.h', | 46 'shared_impl/callback_tracker.h', |
| 35 'shared_impl/file_type_conversion.cc', | 47 'shared_impl/file_type_conversion.cc', |
| 36 'shared_impl/file_type_conversion.h', | 48 'shared_impl/file_type_conversion.h', |
| 37 'shared_impl/function_group_base.cc', | 49 'shared_impl/function_group_base.cc', |
| 38 'shared_impl/function_group_base.h', | 50 'shared_impl/function_group_base.h', |
| 39 'shared_impl/host_resource.h', | 51 'shared_impl/host_resource.h', |
| 40 'shared_impl/id_assignment.cc', | 52 'shared_impl/id_assignment.cc', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 51 'shared_impl/ppb_audio_input_shared.h', | 63 'shared_impl/ppb_audio_input_shared.h', |
| 52 'shared_impl/ppb_audio_shared.cc', | 64 'shared_impl/ppb_audio_shared.cc', |
| 53 'shared_impl/ppb_audio_shared.h', | 65 'shared_impl/ppb_audio_shared.h', |
| 54 'shared_impl/ppb_char_set_shared.cc', | 66 'shared_impl/ppb_char_set_shared.cc', |
| 55 'shared_impl/ppb_char_set_shared.h', | 67 'shared_impl/ppb_char_set_shared.h', |
| 56 'shared_impl/ppb_crypto_shared.cc', | 68 'shared_impl/ppb_crypto_shared.cc', |
| 57 'shared_impl/ppb_file_io_shared.cc', | 69 'shared_impl/ppb_file_io_shared.cc', |
| 58 'shared_impl/ppb_file_io_shared.h', | 70 'shared_impl/ppb_file_io_shared.h', |
| 59 'shared_impl/ppb_file_ref_shared.cc', | 71 'shared_impl/ppb_file_ref_shared.cc', |
| 60 'shared_impl/ppb_file_ref_shared.h', | 72 'shared_impl/ppb_file_ref_shared.h', |
| 61 'shared_impl/ppb_font_shared.cc', | |
| 62 'shared_impl/ppb_font_shared.h', | |
| 63 'shared_impl/ppb_graphics_3d_shared.cc', | 73 'shared_impl/ppb_graphics_3d_shared.cc', |
| 64 'shared_impl/ppb_graphics_3d_shared.h', | 74 'shared_impl/ppb_graphics_3d_shared.h', |
| 65 'shared_impl/ppb_image_data_shared.cc', | 75 'shared_impl/ppb_image_data_shared.cc', |
| 66 'shared_impl/ppb_image_data_shared.h', | 76 'shared_impl/ppb_image_data_shared.h', |
| 67 'shared_impl/ppb_input_event_shared.cc', | 77 'shared_impl/ppb_input_event_shared.cc', |
| 68 'shared_impl/ppb_input_event_shared.h', | 78 'shared_impl/ppb_input_event_shared.h', |
| 69 'shared_impl/ppb_instance_shared.cc', | 79 'shared_impl/ppb_instance_shared.cc', |
| 70 'shared_impl/ppb_instance_shared.h', | 80 'shared_impl/ppb_instance_shared.h', |
| 71 'shared_impl/ppb_memory_shared.cc', | 81 'shared_impl/ppb_memory_shared.cc', |
| 72 'shared_impl/ppb_opengles2_shared.cc', | 82 'shared_impl/ppb_opengles2_shared.cc', |
| (...skipping 27 matching lines...) Expand all Loading... |
| 100 'shared_impl/var.cc', | 110 'shared_impl/var.cc', |
| 101 'shared_impl/var.h', | 111 'shared_impl/var.h', |
| 102 'shared_impl/var_tracker.cc', | 112 'shared_impl/var_tracker.cc', |
| 103 'shared_impl/var_tracker.h', | 113 'shared_impl/var_tracker.h', |
| 104 'shared_impl/webkit_forwarding.cc', | 114 'shared_impl/webkit_forwarding.cc', |
| 105 'shared_impl/webkit_forwarding.h', | 115 'shared_impl/webkit_forwarding.h', |
| 106 # TODO(viettrungluu): Split these out; it won't be used in NaCl. | 116 # TODO(viettrungluu): Split these out; it won't be used in NaCl. |
| 107 'shared_impl/private/net_address_private_impl.cc', | 117 'shared_impl/private/net_address_private_impl.cc', |
| 108 'shared_impl/private/net_address_private_impl.h', | 118 'shared_impl/private/net_address_private_impl.h', |
| 109 | 119 |
| 120 'shared_impl/private/ppb_font_shared.cc', |
| 121 'shared_impl/private/ppb_font_shared.h', |
| 122 |
| 110 'shared_impl/private/tcp_socket_private_impl.cc', | 123 'shared_impl/private/tcp_socket_private_impl.cc', |
| 111 'shared_impl/private/tcp_socket_private_impl.h', | 124 'shared_impl/private/tcp_socket_private_impl.h', |
| 112 'shared_impl/private/udp_socket_private_impl.cc', | 125 'shared_impl/private/udp_socket_private_impl.cc', |
| 113 'shared_impl/private/udp_socket_private_impl.h', | 126 'shared_impl/private/udp_socket_private_impl.h', |
| 114 | 127 |
| 115 'thunk/common.h', | 128 'thunk/common.h', |
| 116 'thunk/common.cc', | 129 'thunk/common.cc', |
| 117 'thunk/enter.cc', | 130 'thunk/enter.cc', |
| 118 'thunk/enter.h', | 131 'thunk/enter.h', |
| 119 'thunk/ppb_audio_api.h', | 132 'thunk/ppb_audio_api.h', |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 'thunk/ppb_websocket_api.h', | 218 'thunk/ppb_websocket_api.h', |
| 206 'thunk/ppb_websocket_thunk.cc', | 219 'thunk/ppb_websocket_thunk.cc', |
| 207 'thunk/ppb_widget_api.h', | 220 'thunk/ppb_widget_api.h', |
| 208 'thunk/ppb_widget_thunk.cc', | 221 'thunk/ppb_widget_thunk.cc', |
| 209 'thunk/ppb_zoom_thunk.cc', | 222 'thunk/ppb_zoom_thunk.cc', |
| 210 'thunk/thunk.h', | 223 'thunk/thunk.h', |
| 211 ], | 224 ], |
| 212 }, | 225 }, |
| 213 ], | 226 ], |
| 214 } | 227 } |
| OLD | NEW |