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

Unified Diff: sandbox/linux/sandbox_linux.gypi

Issue 10827223: Add basic ARM support to the seccomp-bpf sandbox. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Address jln's comments. Created 8 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | sandbox/linux/seccomp-bpf/sandbox_bpf.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/linux/sandbox_linux.gypi
diff --git a/sandbox/linux/sandbox_linux.gypi b/sandbox/linux/sandbox_linux.gypi
index e124007784a2fb16a68c8ac013916930a3084cf1..fb68c73c2b48520e884ab5f759152feceff48e76 100644
--- a/sandbox/linux/sandbox_linux.gypi
+++ b/sandbox/linux/sandbox_linux.gypi
@@ -24,7 +24,8 @@
],
}],
# Similarly, compile seccomp BPF when we support it
- [ 'OS=="linux" and (target_arch=="ia32" or target_arch=="x64")', {
+ [ 'OS=="linux" and (target_arch=="ia32" or target_arch=="x64" '
+ 'or target_arch=="arm")', {
'type': 'static_library',
'dependencies': [
'seccomp_bpf',
@@ -47,7 +48,8 @@
'../..',
],
'conditions': [
- [ 'OS=="linux" and (target_arch=="ia32" or target_arch=="x64")', {
+ [ 'OS=="linux" and (target_arch=="ia32" or target_arch=="x64" '
+ 'or target_arch=="arm")', {
'sources': [
'seccomp-bpf/sandbox_bpf_unittest.cc',
],
« no previous file with comments | « no previous file | sandbox/linux/seccomp-bpf/sandbox_bpf.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698