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

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

Issue 107933006: Get rid of ui_cocoa_third_party_toolkits target from ui.gyp (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ADD README.chromium Created 7 years 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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 ['use_ash==0', { 117 ['use_ash==0', {
118 'sources!': [ 118 'sources!': [
119 'views/message_bubble_base.cc', 119 'views/message_bubble_base.cc',
120 'views/message_bubble_base.h', 120 'views/message_bubble_base.h',
121 'views/message_center_bubble.cc', 121 'views/message_center_bubble.cc',
122 'views/message_center_bubble.h', 122 'views/message_center_bubble.h',
123 'views/message_popup_bubble.cc', 123 'views/message_popup_bubble.cc',
124 'views/message_popup_bubble.h', 124 'views/message_popup_bubble.h',
125 ], 125 ],
126 }], 126 }],
127 ['OS=="mac"', {
128 'dependencies': [
129 '../ui.gyp:ui_cocoa_third_party_toolkits',
130 ],
131 'include_dirs': [
132 '../../third_party/GTM',
133 ],
134 }],
135 ['toolkit_views==1', { 127 ['toolkit_views==1', {
136 'dependencies': [ 128 'dependencies': [
137 '../compositor/compositor.gyp:compositor', 129 '../compositor/compositor.gyp:compositor',
138 ], 130 ],
139 }], 131 }],
140 ['notifications==0', { # Android and iOS. 132 ['notifications==0', { # Android and iOS.
141 'sources/': [ 133 'sources/': [
142 # Exclude everything except dummy impl. 134 # Exclude everything except dummy impl.
143 ['exclude', '\\.(cc|mm)$'], 135 ['exclude', '\\.(cc|mm)$'],
144 ['include', '^dummy_message_center\\.cc$'], 136 ['include', '^dummy_message_center\\.cc$'],
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 # See http://crbug.com/162998#c4 for why this is needed. 226 # See http://crbug.com/162998#c4 for why this is needed.
235 ['OS=="linux" and linux_use_tcmalloc==1', { 227 ['OS=="linux" and linux_use_tcmalloc==1', {
236 'dependencies': [ 228 'dependencies': [
237 '../../base/allocator/allocator.gyp:allocator', 229 '../../base/allocator/allocator.gyp:allocator',
238 ], 230 ],
239 }], 231 }],
240 ], 232 ],
241 }, # target_name: message_center_unittests 233 }, # target_name: message_center_unittests
242 ], 234 ],
243 } 235 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698