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

Side by Side Diff: chrome/chrome.gyp

Issue 149565: Allow dragging text/url content out of the browser. Dragging back in not yet ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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 1846 matching lines...) Expand 10 before | Expand all | Expand 10 after
1857 'browser/views/extensions/extension_view.h', 1857 'browser/views/extensions/extension_view.h',
1858 ], 1858 ],
1859 'sources': [ 1859 'sources': [
1860 # Build the necessary GTM sources 1860 # Build the necessary GTM sources
1861 '../third_party/GTM/AppKit/GTMNSBezierPath+RoundRect.m', 1861 '../third_party/GTM/AppKit/GTMNSBezierPath+RoundRect.m',
1862 '../third_party/GTM/AppKit/GTMNSColor+Luminance.m', 1862 '../third_party/GTM/AppKit/GTMNSColor+Luminance.m',
1863 '../third_party/GTM/AppKit/GTMTheme.m', 1863 '../third_party/GTM/AppKit/GTMTheme.m',
1864 '../third_party/GTM/AppKit/GTMUILocalizer.h', 1864 '../third_party/GTM/AppKit/GTMUILocalizer.h',
1865 '../third_party/GTM/AppKit/GTMUILocalizer.m', 1865 '../third_party/GTM/AppKit/GTMUILocalizer.m',
1866 # Build necessary Mozilla sources 1866 # Build necessary Mozilla sources
1867 '../third_party/mozilla/include/NSPasteboard+Utils.h',
1868 '../third_party/mozilla/include/NSPasteboard+Utils.mm',
1867 '../third_party/mozilla/include/NSScreen+Utils.h', 1869 '../third_party/mozilla/include/NSScreen+Utils.h',
1868 '../third_party/mozilla/include/NSScreen+Utils.m', 1870 '../third_party/mozilla/include/NSScreen+Utils.m',
1871 '../third_party/mozilla/include/NSString+Utils.h',
1872 '../third_party/mozilla/include/NSString+Utils.m',
1873 '../third_party/mozilla/include/NSURL+Utils.h',
1874 '../third_party/mozilla/include/NSURL+Utils.m',
1869 '../third_party/mozilla/include/NSWorkspace+Utils.h', 1875 '../third_party/mozilla/include/NSWorkspace+Utils.h',
1870 '../third_party/mozilla/include/NSWorkspace+Utils.m', 1876 '../third_party/mozilla/include/NSWorkspace+Utils.m',
1871 ], 1877 ],
1872 'include_dirs': [ 1878 'include_dirs': [
1873 '../third_party/GTM', 1879 '../third_party/GTM',
1874 '../third_party/GTM/AppKit', 1880 '../third_party/GTM/AppKit',
1875 ], 1881 ],
1876 'link_settings': { 1882 'link_settings': {
1877 'libraries': [ 1883 'libraries': [
1878 '$(SDKROOT)/System/Library/Frameworks/SecurityInterface.framework' , 1884 '$(SDKROOT)/System/Library/Frameworks/SecurityInterface.framework' ,
(...skipping 3038 matching lines...) Expand 10 before | Expand all | Expand 10 after
4917 # Use outputs of this action as inputs for the main target build. 4923 # Use outputs of this action as inputs for the main target build.
4918 # Seems as a misnomer but makes this happy on Linux (scons). 4924 # Seems as a misnomer but makes this happy on Linux (scons).
4919 'process_outputs_as_sources': 1, 4925 'process_outputs_as_sources': 1,
4920 }, 4926 },
4921 ], # 'actions' 4927 ], # 'actions'
4922 }, 4928 },
4923 ] 4929 ]
4924 }], 4930 }],
4925 ], # 'conditions' 4931 ], # 'conditions'
4926 } 4932 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698