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

Side by Side Diff: chrome/chrome.gyp

Issue 125133: Make tooltips work correctly, allowing for multiple tooltips w/out the mouse ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 6 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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 # Define the common dependencies that contain all the actual 8 # Define the common dependencies that contain all the actual
9 # Chromium functionality. This list gets pulled in below by 9 # Chromium functionality. This list gets pulled in below by
10 # the link of the actual chrome (or chromium) executable on 10 # the link of the actual chrome (or chromium) executable on
(...skipping 1702 matching lines...) Expand 10 before | Expand all | Expand 10 after
1713 'browser/extensions/extension_view.h', 1713 'browser/extensions/extension_view.h',
1714 ], 1714 ],
1715 'sources': [ 1715 'sources': [
1716 # Build the necessary GTM sources 1716 # Build the necessary GTM sources
1717 '../third_party/GTM/AppKit/GTMNSBezierPath+RoundRect.m', 1717 '../third_party/GTM/AppKit/GTMNSBezierPath+RoundRect.m',
1718 '../third_party/GTM/AppKit/GTMNSColor+Luminance.m', 1718 '../third_party/GTM/AppKit/GTMNSColor+Luminance.m',
1719 '../third_party/GTM/AppKit/GTMTheme.m', 1719 '../third_party/GTM/AppKit/GTMTheme.m',
1720 '../third_party/GTM/AppKit/GTMUILocalizer.h', 1720 '../third_party/GTM/AppKit/GTMUILocalizer.h',
1721 '../third_party/GTM/AppKit/GTMUILocalizer.m', 1721 '../third_party/GTM/AppKit/GTMUILocalizer.m',
1722 # Build necessary Mozilla sources 1722 # Build necessary Mozilla sources
1723 '../third_party/mozilla/include/NSScreen+Utils.h',
1724 '../third_party/mozilla/include/NSScreen+Utils.m',
1723 '../third_party/mozilla/include/NSWorkspace+Utils.h', 1725 '../third_party/mozilla/include/NSWorkspace+Utils.h',
1724 '../third_party/mozilla/include/NSWorkspace+Utils.m', 1726 '../third_party/mozilla/include/NSWorkspace+Utils.m',
1727 '../third_party/mozilla/include/ToolTip.h',
1728 '../third_party/mozilla/include/ToolTip.mm',
1725 ], 1729 ],
1726 'include_dirs': [ 1730 'include_dirs': [
1727 '../third_party/GTM', 1731 '../third_party/GTM',
1728 '../third_party/GTM/AppKit', 1732 '../third_party/GTM/AppKit',
1729 ], 1733 ],
1730 'link_settings': { 1734 'link_settings': {
1731 'libraries': [ 1735 'libraries': [
1732 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', 1736 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
1733 ], 1737 ],
1734 }, 1738 },
(...skipping 2916 matching lines...) Expand 10 before | Expand all | Expand 10 after
4651 # Use outputs of this action as inputs for the main target build. 4655 # Use outputs of this action as inputs for the main target build.
4652 # Seems as a misnomer but makes this happy on Linux (scons). 4656 # Seems as a misnomer but makes this happy on Linux (scons).
4653 'process_outputs_as_sources': 1, 4657 'process_outputs_as_sources': 1,
4654 }, 4658 },
4655 ], # 'actions' 4659 ], # 'actions'
4656 }, 4660 },
4657 ] 4661 ]
4658 }], 4662 }],
4659 ], # 'conditions' 4663 ], # 'conditions'
4660 } 4664 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698