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

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

Issue 1647453002: allocator cleanup: remove dependencies on allocator from all targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: pure rebase Created 4 years, 10 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/message_center/BUILD.gn ('k') | ui/snapshot/BUILD.gn » ('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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 'views/notifier_settings_view_unittest.cc', 232 'views/notifier_settings_view_unittest.cc',
233 ], 233 ],
234 }], 234 }],
235 ['notifications==0', { # Android and iOS. 235 ['notifications==0', { # Android and iOS.
236 'sources/': [ 236 'sources/': [
237 # Exclude everything except main(). 237 # Exclude everything except main().
238 ['exclude', '\\.(cc|mm)$'], 238 ['exclude', '\\.(cc|mm)$'],
239 ['include', '^test/run_all_unittests\\.cc$'], 239 ['include', '^test/run_all_unittests\\.cc$'],
240 ], 240 ],
241 }], 241 }],
242 # See http://crbug.com/162998#c4 for why this is needed.
243 ['OS=="linux" and use_allocator!="none"', {
244 'dependencies': [
245 '../../base/allocator/allocator.gyp:allocator',
246 ],
247 }],
248 ], 242 ],
249 }, # target_name: message_center_unittests 243 }, # target_name: message_center_unittests
250 ], 244 ],
251 'conditions': [ 245 'conditions': [
252 ['test_isolation_mode != "noop"', { 246 ['test_isolation_mode != "noop"', {
253 'targets': [ 247 'targets': [
254 { 248 {
255 'target_name': 'message_center_unittests_run', 249 'target_name': 'message_center_unittests_run',
256 'type': 'none', 250 'type': 'none',
257 'dependencies': [ 251 'dependencies': [
(...skipping 10 matching lines...) Expand all
268 'dependencies': [ 262 'dependencies': [
269 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 263 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
270 ], 264 ],
271 }], 265 }],
272 ], 266 ],
273 }, 267 },
274 ], 268 ],
275 }], 269 }],
276 ], 270 ],
277 } 271 }
OLDNEW
« no previous file with comments | « ui/message_center/BUILD.gn ('k') | ui/snapshot/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698