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

Side by Side Diff: build/common.gypi

Issue 260793003: [MIPS] Add seccomp bpf support (Closed) Base URL: https://git.chromium.org/git/chromium/src.git@master
Patch Set: Update per code review Created 6 years, 5 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 | « no previous file | components/nacl/loader/sandbox_linux/nacl_bpf_sandbox_linux.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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 2238 matching lines...) Expand 10 before | Expand all | Expand 10 after
2249 ['win_z7==0', { 2249 ['win_z7==0', {
2250 'fastbuild': 1, 2250 'fastbuild': 1,
2251 }], 2251 }],
2252 ], 2252 ],
2253 }], 2253 }],
2254 2254
2255 ['OS=="win" and (clang==1 or asan==1)', { 2255 ['OS=="win" and (clang==1 or asan==1)', {
2256 'chromium_win_pch': 0, 2256 'chromium_win_pch': 0,
2257 }], 2257 }],
2258 2258
2259 # The seccomp-bpf sandbox is only supported on three architectures 2259 # The seccomp-bpf sandbox is only supported on four architectures
2260 # currently. 2260 # currently.
2261 # Do not disable seccomp_bpf anywhere without talking to 2261 # Do not disable seccomp_bpf anywhere without talking to
2262 # security@chromium.org! 2262 # security@chromium.org!
2263 ['((OS=="linux" or OS=="android") and ' 2263 ['((OS=="linux" or OS=="android") and '
2264 '(target_arch=="ia32" or target_arch=="x64" or ' 2264 '(target_arch=="ia32" or target_arch=="x64" or '
2265 'target_arch=="arm"))', { 2265 'target_arch=="arm" or target_arch=="mipsel"))', {
2266 'use_seccomp_bpf%': 1, 2266 'use_seccomp_bpf%': 1,
2267 }, { 2267 }, {
2268 'use_seccomp_bpf%': 0, 2268 'use_seccomp_bpf%': 0,
2269 }], 2269 }],
2270 ], 2270 ],
2271 2271
2272 # The path to the ANGLE library. 2272 # The path to the ANGLE library.
2273 'angle_path': '<(DEPTH)/third_party/angle', 2273 'angle_path': '<(DEPTH)/third_party/angle',
2274 2274
2275 # List of default apps to install in new profiles. The first list contains 2275 # List of default apps to install in new profiles. The first list contains
(...skipping 3340 matching lines...) Expand 10 before | Expand all | Expand 10 after
5616 # settings in target dicts. SYMROOT is a special case, because many other 5616 # settings in target dicts. SYMROOT is a special case, because many other
5617 # Xcode variables depend on it, including variables such as 5617 # Xcode variables depend on it, including variables such as
5618 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5618 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5619 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5619 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5620 # files to appear (when present) in the UI as actual files and not red 5620 # files to appear (when present) in the UI as actual files and not red
5621 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5621 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5622 # and therefore SYMROOT, needs to be set at the project level. 5622 # and therefore SYMROOT, needs to be set at the project level.
5623 'SYMROOT': '<(DEPTH)/xcodebuild', 5623 'SYMROOT': '<(DEPTH)/xcodebuild',
5624 }, 5624 },
5625 } 5625 }
OLDNEW
« no previous file with comments | « no previous file | components/nacl/loader/sandbox_linux/nacl_bpf_sandbox_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698