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

Side by Side Diff: ui/message_center/message_center.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 | « ui/gl/gl.gyp ('k') | ui/shell_dialogs.gypi » ('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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 'views/message_popup_bubble.h', 112 'views/message_popup_bubble.h',
113 ], 113 ],
114 }], 114 }],
115 ['OS=="mac"', { 115 ['OS=="mac"', {
116 'dependencies': [ 116 'dependencies': [
117 '../ui.gyp:ui_cocoa_third_party_toolkits', 117 '../ui.gyp:ui_cocoa_third_party_toolkits',
118 ], 118 ],
119 'include_dirs': [ 119 'include_dirs': [
120 '../../third_party/GTM', 120 '../../third_party/GTM',
121 ], 121 ],
122 'link_settings': {
123 'libraries': [
124 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework',
125 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
126 ],
127 },
122 }], 128 }],
123 ['toolkit_views==1', { 129 ['toolkit_views==1', {
124 'dependencies': [ 130 'dependencies': [
125 '../compositor/compositor.gyp:compositor', 131 '../compositor/compositor.gyp:compositor',
126 ], 132 ],
127 }], 133 }],
128 ['notifications==0', { # Android and iOS. 134 ['notifications==0', { # Android and iOS.
129 'sources/': [ 135 'sources/': [
130 # Exclude everything except dummy impl. 136 # Exclude everything except dummy impl.
131 ['exclude', '\\.(cc|mm)$'], 137 ['exclude', '\\.(cc|mm)$'],
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 # See http://crbug.com/162998#c4 for why this is needed. 221 # See http://crbug.com/162998#c4 for why this is needed.
216 ['OS=="linux" and linux_use_tcmalloc==1', { 222 ['OS=="linux" and linux_use_tcmalloc==1', {
217 'dependencies': [ 223 'dependencies': [
218 '../../base/allocator/allocator.gyp:allocator', 224 '../../base/allocator/allocator.gyp:allocator',
219 ], 225 ],
220 }], 226 }],
221 ], 227 ],
222 }, # target_name: message_center_unittests 228 }, # target_name: message_center_unittests
223 ], 229 ],
224 } 230 }
OLDNEW
« no previous file with comments | « ui/gl/gl.gyp ('k') | ui/shell_dialogs.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698