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

Side by Side Diff: cloud_print/cloud_print.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 | « chromeos/chromeos.gyp ('k') | components/components_tests.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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 'targets': [ 8 'targets': [
9 { 9 {
10 # GN version: //cloud_print 10 # GN version: //cloud_print
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 'conditions': [ 47 'conditions': [
48 ['OS=="win"', { 48 ['OS=="win"', {
49 'sources': [ 49 'sources': [
50 'service/win/service_ipc_unittest.cc', 50 'service/win/service_ipc_unittest.cc',
51 'virtual_driver/win/port_monitor/port_monitor_unittest.cc', 51 'virtual_driver/win/port_monitor/port_monitor_unittest.cc',
52 ], 52 ],
53 'dependencies': [ 53 'dependencies': [
54 'virtual_driver/win/virtual_driver.gyp:gcp_portmon_lib', 54 'virtual_driver/win/virtual_driver.gyp:gcp_portmon_lib',
55 ], 55 ],
56 }], 56 }],
57 # See http://crbug.com/162998#c4 for why this is needed.
58 ['OS=="linux" and use_allocator!="none"', {
59 'dependencies': [
60 '../base/allocator/allocator.gyp:allocator',
61 ],
62 }],
63 ], 57 ],
64 'msvs_settings': { 58 'msvs_settings': {
65 'VCLinkerTool': { 59 'VCLinkerTool': {
66 'AdditionalDependencies': [ 60 'AdditionalDependencies': [
67 'secur32.lib', 61 'secur32.lib',
68 ], 62 ],
69 }, 63 },
70 }, 64 },
71 }, 65 },
72 ], 66 ],
73 } 67 }
OLDNEW
« no previous file with comments | « chromeos/chromeos.gyp ('k') | components/components_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698