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

Side by Side Diff: device/device_tests.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 | « crypto/crypto.gyp ('k') | extensions/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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 'libraries': [ 142 'libraries': [
143 '$(SDKROOT)/System/Library/Frameworks/IOBluetooth.framework', 143 '$(SDKROOT)/System/Library/Frameworks/IOBluetooth.framework',
144 ], 144 ],
145 }, 145 },
146 'xcode_settings' : { 146 'xcode_settings' : {
147 'OTHER_LDFLAGS' : [ 147 'OTHER_LDFLAGS' : [
148 '-ObjC', 148 '-ObjC',
149 ], 149 ],
150 }, 150 },
151 }], 151 }],
152 ['os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', {
153 'conditions': [
154 ['use_allocator!="none"', {
155 'dependencies': [
156 '../base/allocator/allocator.gyp:allocator',
157 ],
158 }],
159 ],
160 }],
161 ['use_udev==1', { 152 ['use_udev==1', {
162 'dependencies': [ 153 'dependencies': [
163 'udev_linux/udev.gyp:udev_linux', 154 'udev_linux/udev.gyp:udev_linux',
164 ], 155 ],
165 'sources': [ 156 'sources': [
166 'udev_linux/udev_unittest.cc', 157 'udev_linux/udev_unittest.cc',
167 ], 158 ],
168 }], 159 }],
169 ['OS=="linux" and use_udev==0', { 160 ['OS=="linux" and use_udev==0', {
170 # Udev is the only Linux implementation. If we're compiling without 161 # Udev is the only Linux implementation. If we're compiling without
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 '../build/isolate.gypi', 247 '../build/isolate.gypi',
257 ], 248 ],
258 'sources': [ 249 'sources': [
259 'device_unittests.isolate', 250 'device_unittests.isolate',
260 ] 251 ]
261 } 252 }
262 ] 253 ]
263 }] 254 }]
264 ], 255 ],
265 } 256 }
OLDNEW
« no previous file with comments | « crypto/crypto.gyp ('k') | extensions/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698