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

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

Issue 369303003: Fix linking error in message_center (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | no next file » | 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 'views/proportional_image_view.h', 99 'views/proportional_image_view.h',
100 'views/toast_contents_view.cc', 100 'views/toast_contents_view.cc',
101 'views/toast_contents_view.h', 101 'views/toast_contents_view.h',
102 ], 102 ],
103 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 103 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
104 'msvs_disabled_warnings': [ 4267, ], 104 'msvs_disabled_warnings': [ 4267, ],
105 'conditions': [ 105 'conditions': [
106 # This condition is for Windows 8 Metro mode support. We need to 106 # This condition is for Windows 8 Metro mode support. We need to
107 # specify a particular desktop during widget creation in that case. 107 # specify a particular desktop during widget creation in that case.
108 # This is done using the desktop aura native widget framework. 108 # This is done using the desktop aura native widget framework.
109 ['use_ash==1 and OS=="win"', { 109 ['OS=="win"', {
110 'dependencies': [ 110 'dependencies': [
111 '../aura/aura.gyp:aura', 111 '../aura/aura.gyp:aura',
112 ], 112 ],
113 }], 113 }],
114 ['toolkit_views==1', { 114 ['toolkit_views==1', {
115 'dependencies': [ 115 'dependencies': [
116 '../events/events.gyp:events', 116 '../events/events.gyp:events',
117 '../views/views.gyp:views', 117 '../views/views.gyp:views',
118 '../compositor/compositor.gyp:compositor', 118 '../compositor/compositor.gyp:compositor',
119 ], 119 ],
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 # See http://crbug.com/162998#c4 for why this is needed. 238 # See http://crbug.com/162998#c4 for why this is needed.
239 ['OS=="linux" and use_allocator!="none"', { 239 ['OS=="linux" and use_allocator!="none"', {
240 'dependencies': [ 240 'dependencies': [
241 '../../base/allocator/allocator.gyp:allocator', 241 '../../base/allocator/allocator.gyp:allocator',
242 ], 242 ],
243 }], 243 }],
244 ], 244 ],
245 }, # target_name: message_center_unittests 245 }, # target_name: message_center_unittests
246 ], 246 ],
247 } 247 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698