| 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 }, { | 10 }, { |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 ], | 138 ], |
| 139 'include_dirs': [ | 139 'include_dirs': [ |
| 140 '../..', | 140 '../..', |
| 141 ], | 141 ], |
| 142 }, | 142 }, |
| 143 { 'target_name': 'sandbox_services', | 143 { 'target_name': 'sandbox_services', |
| 144 'type': 'static_library', | 144 'type': 'static_library', |
| 145 'sources': [ | 145 'sources': [ |
| 146 'services/broker_process.cc', | 146 'services/broker_process.cc', |
| 147 'services/broker_process.h', | 147 'services/broker_process.h', |
| 148 'services/broker_process_utils.cc', |
| 149 'services/broker_process_utils.h', |
| 148 ], | 150 ], |
| 149 'dependencies': [ | 151 'dependencies': [ |
| 150 '../base/base.gyp:base', | 152 '../base/base.gyp:base', |
| 151 ], | 153 ], |
| 152 'include_dirs': [ | 154 'include_dirs': [ |
| 153 '..', | 155 '..', |
| 154 ], | 156 ], |
| 155 }, | 157 }, |
| 156 { 'target_name': 'sandbox_services_headers', | 158 { 'target_name': 'sandbox_services_headers', |
| 157 'type': 'none', | 159 'type': 'none', |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 }, | 219 }, |
| 218 'dependencies': [ | 220 'dependencies': [ |
| 219 'sandbox_linux_jni_unittests', | 221 'sandbox_linux_jni_unittests', |
| 220 ], | 222 ], |
| 221 'includes': [ '../../build/apk_test.gypi' ], | 223 'includes': [ '../../build/apk_test.gypi' ], |
| 222 } | 224 } |
| 223 ], | 225 ], |
| 224 }], | 226 }], |
| 225 ], | 227 ], |
| 226 } | 228 } |
| OLD | NEW |