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") |
| 6 |
5 component("sandbox") { | 7 component("sandbox") { |
6 sources = [ | 8 sources = [ |
7 "bootstrap_sandbox.cc", | 9 "bootstrap_sandbox.cc", |
8 "bootstrap_sandbox.h", | 10 "bootstrap_sandbox.h", |
9 "dispatch_source_mach.cc", | 11 "dispatch_source_mach.cc", |
10 "dispatch_source_mach.h", | 12 "dispatch_source_mach.h", |
11 "launchd_interception_server.cc", | 13 "launchd_interception_server.cc", |
12 "launchd_interception_server.h", | 14 "launchd_interception_server.h", |
13 "mach_message_server.cc", | 15 "mach_message_server.cc", |
14 "mach_message_server.h", | 16 "mach_message_server.h", |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 "Foundation.framework", | 81 "Foundation.framework", |
80 ] | 82 ] |
81 | 83 |
82 deps = [ | 84 deps = [ |
83 ":sandbox", | 85 ":sandbox", |
84 "//base", | 86 "//base", |
85 "//base/test:run_all_unittests", | 87 "//base/test:run_all_unittests", |
86 "//testing/gtest", | 88 "//testing/gtest", |
87 ] | 89 ] |
88 } | 90 } |
OLD | NEW |