Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Side by Side Diff: content/content_plugin.gypi

Issue 8394002: exclude the linux files that are not needed on openbsd (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: use sources! Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/content_browser.gypi ('k') | media/media.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « content/content_browser.gypi ('k') | media/media.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698