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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 # with our tests. | 173 # with our tests. |
174 'target_name': 'libc_urandom_override', | 174 'target_name': 'libc_urandom_override', |
175 'type': 'static_library', | 175 'type': 'static_library', |
176 'sources': [ | 176 'sources': [ |
177 'services/libc_urandom_override.cc', | 177 'services/libc_urandom_override.cc', |
178 'services/libc_urandom_override.h', | 178 'services/libc_urandom_override.h', |
179 ], | 179 ], |
180 'dependencies': [ | 180 'dependencies': [ |
181 '../base/base.gyp:base', | 181 '../base/base.gyp:base', |
182 ], | 182 ], |
| 183 'link_settings': { |
| 184 'libraries': [ |
| 185 '-ldl', |
| 186 ], |
| 187 }, |
183 'include_dirs': [ | 188 'include_dirs': [ |
184 '..', | 189 '..', |
185 ], | 190 ], |
186 }, | 191 }, |
187 { | 192 { |
188 'target_name': 'suid_sandbox_client', | 193 'target_name': 'suid_sandbox_client', |
189 'type': 'static_library', | 194 'type': 'static_library', |
190 'sources': [ | 195 'sources': [ |
191 'suid/common/sandbox.h', | 196 'suid/common/sandbox.h', |
192 'suid/common/suid_unsafe_environment_variables.h', | 197 'suid/common/suid_unsafe_environment_variables.h', |
(...skipping 24 matching lines...) Expand all Loading... |
217 }, | 222 }, |
218 'dependencies': [ | 223 'dependencies': [ |
219 'sandbox_linux_jni_unittests', | 224 'sandbox_linux_jni_unittests', |
220 ], | 225 ], |
221 'includes': [ '../../build/apk_test.gypi' ], | 226 'includes': [ '../../build/apk_test.gypi' ], |
222 } | 227 } |
223 ], | 228 ], |
224 }], | 229 }], |
225 ], | 230 ], |
226 } | 231 } |
OLD | NEW |