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

Side by Side Diff: ui/app_list/app_list.gyp

Issue 23868020: Fix remaining shared_library link_settings propagation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 7 years, 2 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
« no previous file with comments | « third_party/sqlite/sqlite.gyp ('k') | ui/events/events.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 }], 133 }],
134 ['OS=="mac"', { 134 ['OS=="mac"', {
135 'dependencies': [ 135 'dependencies': [
136 '../ui.gyp:ui_cocoa_third_party_toolkits', 136 '../ui.gyp:ui_cocoa_third_party_toolkits',
137 ], 137 ],
138 'include_dirs': [ 138 'include_dirs': [
139 '../../third_party/GTM', 139 '../../third_party/GTM',
140 ], 140 ],
141 'link_settings': { 141 'link_settings': {
142 'libraries': [ 142 'libraries': [
143 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework',
144 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framewor k',
145 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
146 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
143 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', 147 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
144 ], 148 ],
145 }, 149 },
146 }, { # OS!="mac" 150 }, { # OS!="mac"
147 'sources/': [ 151 'sources/': [
148 ['exclude', 'cocoa/'], 152 ['exclude', 'cocoa/'],
149 ], 153 ],
150 }], 154 }],
151 ], 155 ],
152 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 156 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 '../../webkit/glue/webkit_glue.gyp:glue', 224 '../../webkit/glue/webkit_glue.gyp:glue',
221 '../../webkit/glue/webkit_glue.gyp:glue_child', 225 '../../webkit/glue/webkit_glue.gyp:glue_child',
222 ], 226 ],
223 }], 227 }],
224 ], 228 ],
225 # Disable c4267 warnings until we fix size_t to int truncations. 229 # Disable c4267 warnings until we fix size_t to int truncations.
226 'msvs_disabled_warnings': [ 4267, ], 230 'msvs_disabled_warnings': [ 4267, ],
227 }, 231 },
228 ], 232 ],
229 } 233 }
OLDNEW
« no previous file with comments | « third_party/sqlite/sqlite.gyp ('k') | ui/events/events.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698