OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//services/shell/public/cpp/service.gni") | 5 import("//services/shell/public/cpp/service.gni") |
6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 group("host") { | 9 group("host") { |
10 testonly = true | 10 testonly = true |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 if (is_linux && !is_android) { | 54 if (is_linux && !is_android) { |
55 sources += [ | 55 sources += [ |
56 "linux_sandbox.cc", | 56 "linux_sandbox.cc", |
57 "linux_sandbox.h", | 57 "linux_sandbox.h", |
58 ] | 58 ] |
59 | 59 |
60 deps += [ | 60 deps += [ |
61 "//sandbox/linux:sandbox", | 61 "//sandbox/linux:sandbox", |
62 "//sandbox/linux:sandbox_services", | 62 "//sandbox/linux:sandbox_services", |
63 "//sandbox/linux:seccomp_bpf", | 63 "//sandbox/linux:seccomp_bpf", |
64 "//sandbox/linux:seccomp_bpf_helpers", | |
65 ] | 64 ] |
66 } | 65 } |
67 | 66 |
68 if (is_mac) { | 67 if (is_mac) { |
69 sources += [ | 68 sources += [ |
70 "mach_broker.cc", | 69 "mach_broker.cc", |
71 "mach_broker.h", | 70 "mach_broker.h", |
72 ] | 71 ] |
73 } | 72 } |
74 } | 73 } |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 ":lib", | 118 ":lib", |
120 "//base", | 119 "//base", |
121 "//base/test:test_support", | 120 "//base/test:test_support", |
122 "//mojo/edk/system", | 121 "//mojo/edk/system", |
123 "//services/shell", | 122 "//services/shell", |
124 "//services/shell/runner:init", | 123 "//services/shell/runner:init", |
125 "//services/shell/runner/common", | 124 "//services/shell/runner/common", |
126 "//testing/gtest", | 125 "//testing/gtest", |
127 ] | 126 ] |
128 } | 127 } |
OLD | NEW |