| 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/mac/mac_sdk.gni") | 5 import("//build/config/mac/mac_sdk.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 generate_stubs_script = "//tools/generate_stubs/generate_stubs.py" | 8 generate_stubs_script = "//tools/generate_stubs/generate_stubs.py" |
| 9 generate_stubs_header = "xpc_stubs_header.fragment" | 9 generate_stubs_header = "xpc_stubs_header.fragment" |
| 10 generate_stubs_sig_public = "xpc_stubs.sig" | 10 generate_stubs_sig_public = "xpc_stubs.sig" |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 "bootstrap_sandbox.h", | 50 "bootstrap_sandbox.h", |
| 51 "launchd_interception_server.cc", | 51 "launchd_interception_server.cc", |
| 52 "launchd_interception_server.h", | 52 "launchd_interception_server.h", |
| 53 "mach_message_server.cc", | 53 "mach_message_server.cc", |
| 54 "mach_message_server.h", | 54 "mach_message_server.h", |
| 55 "message_server.h", | 55 "message_server.h", |
| 56 "os_compatibility.cc", | 56 "os_compatibility.cc", |
| 57 "os_compatibility.h", | 57 "os_compatibility.h", |
| 58 "policy.cc", | 58 "policy.cc", |
| 59 "policy.h", | 59 "policy.h", |
| 60 "pre_exec_delegate.cc", |
| 61 "pre_exec_delegate.h", |
| 60 "xpc.cc", | 62 "xpc.cc", |
| 61 "xpc.h", | 63 "xpc.h", |
| 62 "xpc_message_server.cc", | 64 "xpc_message_server.cc", |
| 63 "xpc_message_server.h", | 65 "xpc_message_server.h", |
| 64 ] | 66 ] |
| 65 | 67 |
| 66 defines = [ "SANDBOX_IMPLEMENTATION" ] | 68 defines = [ "SANDBOX_IMPLEMENTATION" ] |
| 67 libs = [ "bsm" ] | 69 libs = [ "bsm" ] |
| 68 | 70 |
| 69 deps = [ | 71 deps = [ |
| (...skipping 22 matching lines...) Expand all Loading... |
| 92 "Foundation.framework", | 94 "Foundation.framework", |
| 93 ] | 95 ] |
| 94 | 96 |
| 95 deps = [ | 97 deps = [ |
| 96 ":sandbox", | 98 ":sandbox", |
| 97 "//base", | 99 "//base", |
| 98 "//base/test:run_all_unittests", | 100 "//base/test:run_all_unittests", |
| 99 "//testing/gtest", | 101 "//testing/gtest", |
| 100 ] | 102 ] |
| 101 } | 103 } |
| OLD | NEW |