Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(311)

Side by Side Diff: sandbox/linux/sandbox_linux.gypi

Issue 23868020: Fix remaining shared_library link_settings propagation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « remoting/remoting.gyp ('k') | sync/sync_core.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « remoting/remoting.gyp ('k') | sync/sync_core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698