OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |