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

Side by Side Diff: ui/ui.gyp

Issue 23944003: Implement Desktop Media Picker (Mac version) for Desktop Capture API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Pull in Quartz.framework. Fix nits. Created 7 years, 3 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'includes': [ 9 'includes': [
10 'shell_dialogs.gypi', 10 'shell_dialogs.gypi',
(...skipping 1026 matching lines...) Expand 10 before | Expand all | Expand 10 after
1037 '..', 1037 '..',
1038 '../third_party/apple', 1038 '../third_party/apple',
1039 '../third_party/GTM', 1039 '../third_party/GTM',
1040 '../third_party/GTM/AppKit', 1040 '../third_party/GTM/AppKit',
1041 '../third_party/GTM/DebugUtils', 1041 '../third_party/GTM/DebugUtils',
1042 '../third_party/GTM/Foundation', 1042 '../third_party/GTM/Foundation',
1043 ], 1043 ],
1044 'link_settings': { 1044 'link_settings': {
1045 'libraries': [ 1045 'libraries': [
1046 '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework', 1046 '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework',
1047 '$(SDKROOT)/System/Library/Frameworks/Quartz.framework',
Robert Sesek 2013/09/06 21:10:13 Why pull this in here instead of in chrome_browser
dcaiafa 2013/09/06 21:39:17 Done.
1047 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', 1048 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
1048 ], 1049 ],
1049 }, 1050 },
1050 'conditions': [ 1051 'conditions': [
1051 ['component=="shared_library"', { 1052 ['component=="shared_library"', {
1052 # GTM is third-party code, so we don't want to add _EXPORT 1053 # GTM is third-party code, so we don't want to add _EXPORT
1053 # annotations to it, so build it without -fvisibility=hidden 1054 # annotations to it, so build it without -fvisibility=hidden
1054 # (else the interface class symbols will be hidden in a 64bit 1055 # (else the interface class symbols will be hidden in a 64bit
1055 # build). Only do this in a component build, so that the shipping 1056 # build). Only do this in a component build, so that the shipping
1056 # chrome binary doesn't end up with unnecessarily exported 1057 # chrome binary doesn't end up with unnecessarily exported
1057 # symbols. 1058 # symbols.
1058 'xcode_settings': { 1059 'xcode_settings': {
1059 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', 1060 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO',
1060 }, 1061 },
1061 }], 1062 }],
1062 ], 1063 ],
1063 }, 1064 },
1064 ], 1065 ],
1065 }], 1066 }],
1066 ], 1067 ],
1067 } 1068 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698