OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'targets': [ |
| 7 { |
| 8 'target_name': 'content_plugin', |
| 9 'type': '<(library)', |
| 10 'msvs_guid': '20A560A0-2CD0-4D9E-A58B-1F24B99C087A', |
| 11 'dependencies': [ |
| 12 'content_common', |
| 13 '../skia/skia.gyp:skia', |
| 14 '../third_party/npapi/npapi.gyp:npapi', |
| 15 '../webkit/support/webkit_support.gyp:glue', |
| 16 ], |
| 17 'include_dirs': [ |
| 18 '<(INTERMEDIATE_DIR)', |
| 19 ], |
| 20 'sources': [ |
| 21 # All .cc, .h, .m, and .mm files under plugins except for tests and |
| 22 # mocks. |
| 23 'plugin/npobject_base.h', |
| 24 'plugin/npobject_proxy.cc', |
| 25 'plugin/npobject_proxy.h', |
| 26 'plugin/npobject_stub.cc', |
| 27 'plugin/npobject_stub.h', |
| 28 'plugin/npobject_util.cc', |
| 29 'plugin/npobject_util.h', |
| 30 'plugin/plugin_channel.cc', |
| 31 'plugin/plugin_channel.h', |
| 32 'plugin/plugin_channel_base.cc', |
| 33 'plugin/plugin_channel_base.h', |
| 34 'plugin/plugin_interpose_util_mac.mm', |
| 35 'plugin/plugin_interpose_util_mac.h', |
| 36 'plugin/plugin_main.cc', |
| 37 'plugin/plugin_main_linux.cc', |
| 38 'plugin/plugin_main_mac.mm', |
| 39 'plugin/plugin_thread.cc', |
| 40 'plugin/plugin_thread.h', |
| 41 'plugin/webplugin_accelerated_surface_proxy_mac.cc', |
| 42 'plugin/webplugin_accelerated_surface_proxy_mac.h', |
| 43 'plugin/webplugin_delegate_stub.cc', |
| 44 'plugin/webplugin_delegate_stub.h', |
| 45 'plugin/webplugin_proxy.cc', |
| 46 'plugin/webplugin_proxy.h', |
| 47 ], |
| 48 # These are layered in conditionals in the event other platforms |
| 49 # end up using this module as well. |
| 50 'conditions': [ |
| 51 ['OS=="win"', { |
| 52 'include_dirs': [ |
| 53 '<(DEPTH)/third_party/wtl/include', |
| 54 ], |
| 55 }], |
| 56 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { |
| 57 'dependencies': [ |
| 58 '../build/linux/system.gyp:gtk', |
| 59 ], |
| 60 }], |
| 61 ], |
| 62 }, |
| 63 ], |
| 64 } |
OLD | NEW |