OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'conditions': [ | 7 'conditions': [ |
8 ['OS=="linux"', { | 8 ['OS=="linux"', { |
9 'compile_suid_client': 1, | 9 'compile_suid_client': 1, |
10 'compile_credentials': 1, | 10 'compile_credentials': 1, |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 }, | 176 }, |
177 { 'target_name': 'sandbox_services', | 177 { 'target_name': 'sandbox_services', |
178 'type': 'static_library', | 178 'type': 'static_library', |
179 'sources': [ | 179 'sources': [ |
180 'services/broker_process.cc', | 180 'services/broker_process.cc', |
181 'services/broker_process.h', | 181 'services/broker_process.h', |
182 'services/init_process_reaper.cc', | 182 'services/init_process_reaper.cc', |
183 'services/init_process_reaper.h', | 183 'services/init_process_reaper.h', |
184 'services/thread_helpers.cc', | 184 'services/thread_helpers.cc', |
185 'services/thread_helpers.h', | 185 'services/thread_helpers.h', |
| 186 'services/yama.h', |
| 187 'services/yama.cc', |
186 ], | 188 ], |
187 'dependencies': [ | 189 'dependencies': [ |
188 '../base/base.gyp:base', | 190 '../base/base.gyp:base', |
189 ], | 191 ], |
190 'conditions': [ | 192 'conditions': [ |
191 ['compile_credentials==1', { | 193 ['compile_credentials==1', { |
192 'sources': [ | 194 'sources': [ |
193 'services/credentials.cc', | 195 'services/credentials.cc', |
194 'services/credentials.h', | 196 'services/credentials.h', |
195 ], | 197 ], |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
283 }, | 285 }, |
284 'dependencies': [ | 286 'dependencies': [ |
285 'sandbox_linux_jni_unittests', | 287 'sandbox_linux_jni_unittests', |
286 ], | 288 ], |
287 'includes': [ '../../build/apk_test.gypi' ], | 289 'includes': [ '../../build/apk_test.gypi' ], |
288 } | 290 } |
289 ], | 291 ], |
290 }], | 292 }], |
291 ], | 293 ], |
292 } | 294 } |
OLD | NEW |