| 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 'dependencies': [ | 6 'dependencies': [ |
| 7 '../skia/skia.gyp:skia', | 7 '../skia/skia.gyp:skia', |
| 8 '../third_party/npapi/npapi.gyp:npapi', | 8 '../third_party/npapi/npapi.gyp:npapi', |
| 9 '../webkit/support/webkit_support.gyp:glue', | 9 '../webkit/support/webkit_support.gyp:glue', |
| 10 ], | 10 ], |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 'plugin/webplugin_accelerated_surface_proxy_mac.h', | 27 'plugin/webplugin_accelerated_surface_proxy_mac.h', |
| 28 'plugin/webplugin_delegate_stub.cc', | 28 'plugin/webplugin_delegate_stub.cc', |
| 29 'plugin/webplugin_delegate_stub.h', | 29 'plugin/webplugin_delegate_stub.h', |
| 30 'plugin/webplugin_proxy.cc', | 30 'plugin/webplugin_proxy.cc', |
| 31 'plugin/webplugin_proxy.h', | 31 'plugin/webplugin_proxy.h', |
| 32 'public/plugin/content_plugin_client.h', | 32 'public/plugin/content_plugin_client.h', |
| 33 ], | 33 ], |
| 34 # These are layered in conditionals in the event other platforms | 34 # These are layered in conditionals in the event other platforms |
| 35 # end up using this module as well. | 35 # end up using this module as well. |
| 36 'conditions': [ | 36 'conditions': [ |
| 37 ['OS=="openbsd"', { |
| 38 'sources/': [ |
| 39 ['exclude', '^plugin/plugin_main_linux\\.cc$'], |
| 40 ], |
| 41 }], |
| 37 ['OS=="win"', { | 42 ['OS=="win"', { |
| 38 'include_dirs': [ | 43 'include_dirs': [ |
| 39 '<(DEPTH)/third_party/wtl/include', | 44 '<(DEPTH)/third_party/wtl/include', |
| 40 ], | 45 ], |
| 41 }], | 46 }], |
| 42 ['toolkit_uses_gtk == 1', { | 47 ['toolkit_uses_gtk == 1', { |
| 43 'dependencies': [ | 48 'dependencies': [ |
| 44 '../build/linux/system.gyp:gtk', | 49 '../build/linux/system.gyp:gtk', |
| 45 ], | 50 ], |
| 46 'link_settings': { | 51 'link_settings': { |
| 47 'libraries': [ | 52 'libraries': [ |
| 48 '-lXext', | 53 '-lXext', |
| 49 ], | 54 ], |
| 50 }, | 55 }, |
| 51 }], | 56 }], |
| 52 ], | 57 ], |
| 53 } | 58 } |
| OLD | NEW |