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

Side by Side Diff: build/common.gypi

Issue 858723003: [LTO] Remove unused condition. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | no next file » | 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 2333 matching lines...) Expand 10 before | Expand all | Expand 10 after
2344 # Do not disable seccomp_bpf anywhere without talking to 2344 # Do not disable seccomp_bpf anywhere without talking to
2345 # security@chromium.org! 2345 # security@chromium.org!
2346 ['((OS=="linux" or OS=="android") and ' 2346 ['((OS=="linux" or OS=="android") and '
2347 '(target_arch=="ia32" or target_arch=="x64" or ' 2347 '(target_arch=="ia32" or target_arch=="x64" or '
2348 'target_arch=="arm" or target_arch=="mipsel" or ' 2348 'target_arch=="arm" or target_arch=="mipsel" or '
2349 'target_arch=="arm64"))', { 2349 'target_arch=="arm64"))', {
2350 'use_seccomp_bpf%': 1, 2350 'use_seccomp_bpf%': 1,
2351 }, { 2351 }, {
2352 'use_seccomp_bpf%': 0, 2352 'use_seccomp_bpf%': 0,
2353 }], 2353 }],
2354 # Set component build with LTO until all tests pass.
2355 # This also reduces link time.
2356 ['use_lto==1', {
2357 'component%': "shared_library",
2358 }],
2359 ], 2354 ],
2360 2355
2361 # older history files use fts2 instead of fts3 2356 # older history files use fts2 instead of fts3
2362 'sqlite_enable_fts2%': '<(support_pre_M6_history_database)', 2357 'sqlite_enable_fts2%': '<(support_pre_M6_history_database)',
2363 2358
2364 # The path to the ANGLE library. 2359 # The path to the ANGLE library.
2365 'angle_path': '<(DEPTH)/third_party/angle', 2360 'angle_path': '<(DEPTH)/third_party/angle',
2366 2361
2367 # List of default apps to install in new profiles. The first list contains 2362 # List of default apps to install in new profiles. The first list contains
2368 # the source files as found in svn. The second list, used only for linux, 2363 # the source files as found in svn. The second list, used only for linux,
(...skipping 3480 matching lines...) Expand 10 before | Expand all | Expand 10 after
5849 # settings in target dicts. SYMROOT is a special case, because many other 5844 # settings in target dicts. SYMROOT is a special case, because many other
5850 # Xcode variables depend on it, including variables such as 5845 # Xcode variables depend on it, including variables such as
5851 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5846 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5852 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5847 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5853 # files to appear (when present) in the UI as actual files and not red 5848 # files to appear (when present) in the UI as actual files and not red
5854 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5849 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5855 # and therefore SYMROOT, needs to be set at the project level. 5850 # and therefore SYMROOT, needs to be set at the project level.
5856 'SYMROOT': '<(DEPTH)/xcodebuild', 5851 'SYMROOT': '<(DEPTH)/xcodebuild',
5857 }, 5852 },
5858 } 5853 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698