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

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

Issue 119453002: sandbox: Remove a TEXTREL on Linux ARM. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years 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 | « no previous file | sandbox/linux/seccomp-bpf/syscall.cc » ('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 'compile_credentials': 1, 10 'compile_credentials': 1,
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 'target_name': 'sandbox_linux_jni_unittests', 77 'target_name': 'sandbox_linux_jni_unittests',
78 'includes': [ 78 'includes': [
79 'sandbox_linux_test_sources.gypi', 79 'sandbox_linux_test_sources.gypi',
80 ], 80 ],
81 'type': 'shared_library', 81 'type': 'shared_library',
82 'conditions': [ 82 'conditions': [
83 [ 'OS == "android" and gtest_target_type == "shared_library"', { 83 [ 'OS == "android" and gtest_target_type == "shared_library"', {
84 'dependencies': [ 84 'dependencies': [
85 '../testing/android/native_test.gyp:native_test_native_code', 85 '../testing/android/native_test.gyp:native_test_native_code',
86 ], 86 ],
87 'ldflags!': [
88 # Remove warnings about text relocations, to prevent build
89 # failure.
90 '-Wl,--warn-shared-textrel'
91 ],
92 }], 87 }],
93 ], 88 ],
94 }, 89 },
95 { 90 {
96 'target_name': 'seccomp_bpf', 91 'target_name': 'seccomp_bpf',
97 'type': 'static_library', 92 'type': 'static_library',
98 'sources': [ 93 'sources': [
99 'seccomp-bpf/basicblock.cc', 94 'seccomp-bpf/basicblock.cc',
100 'seccomp-bpf/basicblock.h', 95 'seccomp-bpf/basicblock.h',
101 'seccomp-bpf/codegen.cc', 96 'seccomp-bpf/codegen.cc',
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 }, 273 },
279 'dependencies': [ 274 'dependencies': [
280 'sandbox_linux_jni_unittests', 275 'sandbox_linux_jni_unittests',
281 ], 276 ],
282 'includes': [ '../../build/apk_test.gypi' ], 277 'includes': [ '../../build/apk_test.gypi' ],
283 } 278 }
284 ], 279 ],
285 }], 280 }],
286 ], 281 ],
287 } 282 }
OLDNEW
« no previous file with comments | « no previous file | sandbox/linux/seccomp-bpf/syscall.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698