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

Side by Side Diff: components/nacl.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 | « components/components_tests.gyp ('k') | components/test_runner/test_runner.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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'target_defaults': { 9 'target_defaults': {
10 'variables': { 10 'variables': {
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 'nacl_switches', 247 'nacl_switches',
248 '../crypto/crypto.gyp:crypto', 248 '../crypto/crypto.gyp:crypto',
249 '../sandbox/sandbox.gyp:sandbox', 249 '../sandbox/sandbox.gyp:sandbox',
250 ], 250 ],
251 'conditions': [ 251 'conditions': [
252 ['use_glib == 1', { 252 ['use_glib == 1', {
253 'dependencies': [ 253 'dependencies': [
254 '../build/linux/system.gyp:glib', 254 '../build/linux/system.gyp:glib',
255 ], 255 ],
256 }], 256 }],
257 ['os_posix == 1 and OS != "mac"', {
258 'conditions': [
259 ['use_allocator!="none"', {
260 'dependencies': [
261 '../base/allocator/allocator.gyp:allocator',
262 ],
263 }],
264 ],
265 }],
266 ['use_seccomp_bpf == 0', { 257 ['use_seccomp_bpf == 0', {
267 'sources!': [ 258 'sources!': [
268 '../content/common/sandbox_linux/sandbox_bpf_base_policy_lin ux.cc', 259 '../content/common/sandbox_linux/sandbox_bpf_base_policy_lin ux.cc',
269 '../content/common/sandbox_linux/sandbox_init_linux.cc', 260 '../content/common/sandbox_linux/sandbox_init_linux.cc',
270 ], 261 ],
271 }, { 262 }, {
272 'defines': ['USE_SECCOMP_BPF'], 263 'defines': ['USE_SECCOMP_BPF'],
273 }], 264 }],
274 ], 265 ],
275 'cflags': ['-fPIE'], 266 'cflags': ['-fPIE'],
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 ], 454 ],
464 'include_dirs': [ 455 'include_dirs': [
465 '..', 456 '..',
466 ], 457 ],
467 'dependencies': [ 458 'dependencies': [
468 '../content/content.gyp:content_common', 459 '../content/content.gyp:content_common',
469 ], 460 ],
470 }, 461 },
471 ] 462 ]
472 } 463 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/test_runner/test_runner.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698