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

Side by Side Diff: build/common.gypi

Issue 117803002: Make building seccomp-bpf a GYP condition (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Excludes files to be IDE friendly. 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | components/nacl.gyp » ('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 1899 matching lines...) Expand 10 before | Expand all | Expand 10 after
1910 ['OS=="win" and use_goma==1', { 1910 ['OS=="win" and use_goma==1', {
1911 # goma doesn't support pch yet. 1911 # goma doesn't support pch yet.
1912 'chromium_win_pch': 0, 1912 'chromium_win_pch': 0,
1913 # goma doesn't support PDB yet, so win_z7=1 or fastbuild=1. 1913 # goma doesn't support PDB yet, so win_z7=1 or fastbuild=1.
1914 'conditions': [ 1914 'conditions': [
1915 ['fastbuild==0', { 1915 ['fastbuild==0', {
1916 'win_z7': 1, 1916 'win_z7': 1,
1917 }], 1917 }],
1918 ], 1918 ],
1919 }], 1919 }],
1920 # The seccomp-bpf sandbox is only supported on three architectures
1921 # currently.
1922 # Do not disable seccomp_bpf anywhere without talking to
1923 # security@chromium.org!
1924 ['((OS=="linux" or OS=="android") and '
1925 '(target_arch=="ia32" or target_arch=="x64" or '
1926 'target_arch=="arm"))', {
1927 'use_seccomp_bpf%': 1,
1928 }, {
1929 'use_seccomp_bpf%': 0,
1930 }],
1920 ], 1931 ],
1921 1932
1922 # The path to the ANGLE library. 1933 # The path to the ANGLE library.
1923 'angle_path': '<(DEPTH)/third_party/angle', 1934 'angle_path': '<(DEPTH)/third_party/angle',
1924 1935
1925 # List of default apps to install in new profiles. The first list contains 1936 # List of default apps to install in new profiles. The first list contains
1926 # the source files as found in svn. The second list, used only for linux, 1937 # the source files as found in svn. The second list, used only for linux,
1927 # contains the destination location for each of the files. When a crx 1938 # contains the destination location for each of the files. When a crx
1928 # is added or removed from the list, the chrome/browser/resources/ 1939 # is added or removed from the list, the chrome/browser/resources/
1929 # default_apps/external_extensions.json file must also be updated. 1940 # default_apps/external_extensions.json file must also be updated.
(...skipping 2853 matching lines...) Expand 10 before | Expand all | Expand 10 after
4783 # settings in target dicts. SYMROOT is a special case, because many other 4794 # settings in target dicts. SYMROOT is a special case, because many other
4784 # Xcode variables depend on it, including variables such as 4795 # Xcode variables depend on it, including variables such as
4785 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4796 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4786 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4797 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4787 # files to appear (when present) in the UI as actual files and not red 4798 # files to appear (when present) in the UI as actual files and not red
4788 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4799 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4789 # and therefore SYMROOT, needs to be set at the project level. 4800 # and therefore SYMROOT, needs to be set at the project level.
4790 'SYMROOT': '<(DEPTH)/xcodebuild', 4801 'SYMROOT': '<(DEPTH)/xcodebuild',
4791 }, 4802 },
4792 } 4803 }
OLDNEW
« no previous file with comments | « no previous file | components/nacl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698