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

Side by Side Diff: chrome/default_plugin/default_plugin.gyp

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: 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 'sources': [ 44 'sources': [
45 'default_plugin_resources.h', 45 'default_plugin_resources.h',
46 'install_dialog.cc', 46 'install_dialog.cc',
47 'install_dialog.h', 47 'install_dialog.h',
48 'plugin_database_handler.cc', 48 'plugin_database_handler.cc',
49 'plugin_database_handler.h', 49 'plugin_database_handler.h',
50 'plugin_install_job_monitor.cc', 50 'plugin_install_job_monitor.cc',
51 'plugin_install_job_monitor.h', 51 'plugin_install_job_monitor.h',
52 ], 52 ],
53 }], 53 }],
54 ['OS=="linux"', { 54 ['toolkit_uses_gtk==1', {
55 'dependencies': [ 55 'dependencies': [
56 '<(DEPTH)/build/linux/system.gyp:gtk', 56 '<(DEPTH)/build/linux/system.gyp:gtk',
57 ], 57 ],
58 }], 58 }],
59 ], 59 ],
60 }, 60 },
61 # This can't be part of chrome.gyp:chrome_resources because then there'd 61 # This can't be part of chrome.gyp:chrome_resources because then there'd
62 # be a cyclic dependency. 62 # be a cyclic dependency.
63 { 63 {
64 'target_name': 'default_plugin_resources', 64 'target_name': 'default_plugin_resources',
(...skipping 13 matching lines...) Expand all
78 'includes': [ '../../build/grit_target.gypi' ], 78 'includes': [ '../../build/grit_target.gypi' ],
79 }, 79 },
80 ], 80 ],
81 } 81 }
82 82
83 # Local Variables: 83 # Local Variables:
84 # tab-width:2 84 # tab-width:2
85 # indent-tabs-mode:nil 85 # indent-tabs-mode:nil
86 # End: 86 # End:
87 # vim: set expandtab tabstop=2 shiftwidth=2: 87 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698