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

Side by Side Diff: content/content_plugin.gypi

Issue 7011032: Make the gyp files more cross-platform across the Unices (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: updated to trunk and fixed some nits Created 9 years, 7 months 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 | Annotate | Revision Log
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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'content_plugin', 8 'target_name': 'content_plugin',
9 'type': '<(library)', 9 'type': '<(library)',
10 'msvs_guid': '20A560A0-2CD0-4D9E-A58B-1F24B99C087A', 10 'msvs_guid': '20A560A0-2CD0-4D9E-A58B-1F24B99C087A',
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 'plugin/webplugin_proxy.h', 47 'plugin/webplugin_proxy.h',
48 ], 48 ],
49 # These are layered in conditionals in the event other platforms 49 # These are layered in conditionals in the event other platforms
50 # end up using this module as well. 50 # end up using this module as well.
51 'conditions': [ 51 'conditions': [
52 ['OS=="win"', { 52 ['OS=="win"', {
53 'include_dirs': [ 53 'include_dirs': [
54 '<(DEPTH)/third_party/wtl/include', 54 '<(DEPTH)/third_party/wtl/include',
55 ], 55 ],
56 }], 56 }],
57 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { 57 ['toolkit_uses_gtk==1', {
58 'dependencies': [ 58 'dependencies': [
59 '../build/linux/system.gyp:gtk', 59 '../build/linux/system.gyp:gtk',
60 ], 60 ],
61 }], 61 }],
62 ], 62 ],
63 }, 63 },
64 ], 64 ],
65 } 65 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698