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

Side by Side Diff: content/content_plugin.gypi

Issue 8598010: replace platform conditions with os_posix and os_bsd where applicable (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rebase Created 9 years 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
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"', { 37 ['os_bsd==1', {
38 'sources/': [ 38 'sources/': [
39 ['exclude', '^plugin/plugin_main_linux\\.cc$'], 39 ['exclude', '^plugin/plugin_main_linux\\.cc$'],
40 ], 40 ],
41 }], 41 }],
42 ['OS=="win"', { 42 ['OS=="win"', {
43 'include_dirs': [ 43 'include_dirs': [
44 '<(DEPTH)/third_party/wtl/include', 44 '<(DEPTH)/third_party/wtl/include',
45 ], 45 ],
46 }], 46 }],
47 ['toolkit_uses_gtk == 1', { 47 ['toolkit_uses_gtk == 1', {
48 'dependencies': [ 48 'dependencies': [
49 '../build/linux/system.gyp:gtk', 49 '../build/linux/system.gyp:gtk',
50 ], 50 ],
51 'link_settings': { 51 'link_settings': {
52 'libraries': [ 52 'libraries': [
53 '-lXext', 53 '-lXext',
54 ], 54 ],
55 }, 55 },
56 }], 56 }],
57 ['use_aura==1 and OS!="win"', { 57 ['use_aura==1 and OS!="win"', {
58 'link_settings': { 58 'link_settings': {
59 'libraries': [ 59 'libraries': [
60 '-lXext', 60 '-lXext',
61 ], 61 ],
62 }, 62 },
63 }], 63 }],
64 ], 64 ],
65 } 65 }
OLDNEW
« no previous file with comments | « content/content_browser.gypi ('k') | crypto/crypto.gyp » ('j') | crypto/crypto.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698