| 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 component("sandbox") { | 5 component("sandbox") { |
| 6 sources = [ | 6 sources = [ |
| 7 "bootstrap_sandbox.cc", | 7 "bootstrap_sandbox.cc", |
| 8 "bootstrap_sandbox.h", | 8 "bootstrap_sandbox.h", |
| 9 "dispatch_source_mach.cc", |
| 10 "dispatch_source_mach.h", |
| 9 "launchd_interception_server.cc", | 11 "launchd_interception_server.cc", |
| 10 "launchd_interception_server.h", | 12 "launchd_interception_server.h", |
| 11 "mach_message_server.cc", | 13 "mach_message_server.cc", |
| 12 "mach_message_server.h", | 14 "mach_message_server.h", |
| 13 "message_server.h", | 15 "message_server.h", |
| 14 "os_compatibility.cc", | 16 "os_compatibility.cc", |
| 15 "os_compatibility.h", | 17 "os_compatibility.h", |
| 16 "policy.cc", | 18 "policy.cc", |
| 17 "policy.h", | 19 "policy.h", |
| 18 "xpc.h", | 20 "xpc.h", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "Foundation.framework", | 66 "Foundation.framework", |
| 65 ] | 67 ] |
| 66 | 68 |
| 67 deps = [ | 69 deps = [ |
| 68 ":sandbox", | 70 ":sandbox", |
| 69 "//base", | 71 "//base", |
| 70 "//base/test:run_all_unittests", | 72 "//base/test:run_all_unittests", |
| 71 "//testing/gtest", | 73 "//testing/gtest", |
| 72 ] | 74 ] |
| 73 } | 75 } |
| OLD | NEW |