| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/nacl/config.gni") | 6 import("//build/config/nacl/config.gni") |
| 7 import("//sandbox/features.gni") | 7 import("//sandbox/features.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 } | 384 } |
| 385 } | 385 } |
| 386 | 386 |
| 387 source_set("sandbox_services_headers") { | 387 source_set("sandbox_services_headers") { |
| 388 sources = [ | 388 sources = [ |
| 389 "system_headers/arm64_linux_syscalls.h", | 389 "system_headers/arm64_linux_syscalls.h", |
| 390 "system_headers/arm64_linux_ucontext.h", | 390 "system_headers/arm64_linux_ucontext.h", |
| 391 "system_headers/arm_linux_syscalls.h", | 391 "system_headers/arm_linux_syscalls.h", |
| 392 "system_headers/arm_linux_ucontext.h", | 392 "system_headers/arm_linux_ucontext.h", |
| 393 "system_headers/i386_linux_ucontext.h", | 393 "system_headers/i386_linux_ucontext.h", |
| 394 "system_headers/linux_filter.h", |
| 394 "system_headers/linux_futex.h", | 395 "system_headers/linux_futex.h", |
| 395 "system_headers/linux_seccomp.h", | 396 "system_headers/linux_seccomp.h", |
| 396 "system_headers/linux_signal.h", | 397 "system_headers/linux_signal.h", |
| 397 "system_headers/linux_syscalls.h", | 398 "system_headers/linux_syscalls.h", |
| 398 "system_headers/linux_time.h", | 399 "system_headers/linux_time.h", |
| 399 "system_headers/linux_ucontext.h", | 400 "system_headers/linux_ucontext.h", |
| 401 "system_headers/mips64_linux_syscalls.h", |
| 402 "system_headers/mips_linux_syscalls.h", |
| 403 "system_headers/mips_linux_ucontext.h", |
| 400 "system_headers/x86_32_linux_syscalls.h", | 404 "system_headers/x86_32_linux_syscalls.h", |
| 401 "system_headers/x86_64_linux_syscalls.h", | 405 "system_headers/x86_64_linux_syscalls.h", |
| 406 "system_headers/x86_64_linux_ucontext.h", |
| 402 ] | 407 ] |
| 403 } | 408 } |
| 404 | 409 |
| 405 if (compile_suid_client || is_nacl_nonsfi) { | 410 if (compile_suid_client || is_nacl_nonsfi) { |
| 406 component("suid_sandbox_client") { | 411 component("suid_sandbox_client") { |
| 407 sources = [ | 412 sources = [ |
| 408 "suid/client/setuid_sandbox_client.cc", | 413 "suid/client/setuid_sandbox_client.cc", |
| 409 "suid/client/setuid_sandbox_client.h", | 414 "suid/client/setuid_sandbox_client.h", |
| 410 "suid/client/setuid_sandbox_host.cc", | 415 "suid/client/setuid_sandbox_host.cc", |
| 411 "suid/client/setuid_sandbox_host.h", | 416 "suid/client/setuid_sandbox_host.h", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 432 | 437 |
| 433 if (is_android) { | 438 if (is_android) { |
| 434 # TODO(GYP_GONE) Delete this after we've converted everything to GN. | 439 # TODO(GYP_GONE) Delete this after we've converted everything to GN. |
| 435 group("sandbox_linux_unittests_deps") { | 440 group("sandbox_linux_unittests_deps") { |
| 436 testonly = true | 441 testonly = true |
| 437 deps = [ | 442 deps = [ |
| 438 ":sandbox_linux_unittests", | 443 ":sandbox_linux_unittests", |
| 439 ] | 444 ] |
| 440 } | 445 } |
| 441 } | 446 } |
| OLD | NEW |