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

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: Rebase. Created 6 years, 7 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
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 2101 matching lines...) Expand 10 before | Expand all | Expand 10 after
2112 ['win_z7==0', { 2112 ['win_z7==0', {
2113 'fastbuild': 1, 2113 'fastbuild': 1,
2114 }], 2114 }],
2115 ], 2115 ],
2116 }], 2116 }],
2117 2117
2118 ['OS=="win" and (clang==1 or asan==1)', { 2118 ['OS=="win" and (clang==1 or asan==1)', {
2119 'chromium_win_pch': 0, 2119 'chromium_win_pch': 0,
2120 }], 2120 }],
2121 2121
2122 # The seccomp-bpf sandbox is only supported on three architectures 2122 # The seccomp-bpf sandbox is only supported on four architectures
2123 # currently. 2123 # currently.
2124 # Do not disable seccomp_bpf anywhere without talking to 2124 # Do not disable seccomp_bpf anywhere without talking to
2125 # security@chromium.org! 2125 # security@chromium.org!
2126 ['((OS=="linux" or OS=="android") and ' 2126 ['((OS=="linux" or OS=="android") and '
2127 '(target_arch=="ia32" or target_arch=="x64" or ' 2127 '(target_arch=="ia32" or target_arch=="x64" or '
2128 'target_arch=="arm"))', { 2128 'target_arch=="arm" or target_arch=="mipsel"))', {
2129 'use_seccomp_bpf%': 1, 2129 'use_seccomp_bpf%': 1,
2130 }, { 2130 }, {
2131 'use_seccomp_bpf%': 0, 2131 'use_seccomp_bpf%': 0,
2132 }], 2132 }],
2133 ], 2133 ],
2134 2134
2135 # The path to the ANGLE library. 2135 # The path to the ANGLE library.
2136 'angle_path': '<(DEPTH)/third_party/angle', 2136 'angle_path': '<(DEPTH)/third_party/angle',
2137 2137
2138 # List of default apps to install in new profiles. The first list contains 2138 # List of default apps to install in new profiles. The first list contains
(...skipping 3107 matching lines...) Expand 10 before | Expand all | Expand 10 after
5246 # settings in target dicts. SYMROOT is a special case, because many other 5246 # settings in target dicts. SYMROOT is a special case, because many other
5247 # Xcode variables depend on it, including variables such as 5247 # Xcode variables depend on it, including variables such as
5248 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5248 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5249 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5249 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5250 # files to appear (when present) in the UI as actual files and not red 5250 # files to appear (when present) in the UI as actual files and not red
5251 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5251 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5252 # and therefore SYMROOT, needs to be set at the project level. 5252 # and therefore SYMROOT, needs to be set at the project level.
5253 'SYMROOT': '<(DEPTH)/xcodebuild', 5253 'SYMROOT': '<(DEPTH)/xcodebuild',
5254 }, 5254 },
5255 } 5255 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698