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

Side by Side Diff: ui/compositor/compositor.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/compositor/BUILD.gn ('k') | ui/events/events_unittests.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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 'run_all_unittests.cc', 185 'run_all_unittests.cc',
186 'transform_animation_curve_adapter_unittest.cc', 186 'transform_animation_curve_adapter_unittest.cc',
187 ], 187 ],
188 'conditions': [ 188 'conditions': [
189 # osmesa GL implementation is used on linux. 189 # osmesa GL implementation is used on linux.
190 ['OS=="linux"', { 190 ['OS=="linux"', {
191 'dependencies': [ 191 'dependencies': [
192 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', 192 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa',
193 ], 193 ],
194 }], 194 }],
195 ['os_posix == 1 and OS != "mac"', {
196 'conditions': [
197 ['use_allocator!="none"', {
198 'dependencies': [
199 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
200 ],
201 }],
202 ],
203 }],
204 ['OS == "android"', { 195 ['OS == "android"', {
205 'dependencies': [ 196 'dependencies': [
206 '../../testing/android/native_test.gyp:native_test_native_code', 197 '../../testing/android/native_test.gyp:native_test_native_code',
207 ], 198 ],
208 }], 199 }],
209 ], 200 ],
210 }, 201 },
211 ], 202 ],
212 'conditions': [ 203 'conditions': [
213 ['test_isolation_mode != "noop"', { 204 ['test_isolation_mode != "noop"', {
(...skipping 27 matching lines...) Expand all
241 'variables': { 232 'variables': {
242 'test_suite_name': 'compositor_unittests', 233 'test_suite_name': 'compositor_unittests',
243 }, 234 },
244 'includes': [ 235 'includes': [
245 '../../build/apk_test.gypi', 236 '../../build/apk_test.gypi',
246 ], 237 ],
247 }, 238 },
248 ]}] 239 ]}]
249 ], 240 ],
250 } 241 }
OLDNEW
« no previous file with comments | « ui/compositor/BUILD.gn ('k') | ui/events/events_unittests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698