OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |