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

Side by Side Diff: chrome/chrome_browser_ui.gypi

Issue 1289623006: build: On Android, disable LTO for specific targets only when targeting GCC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 2012 The Chromium Authors. All rights reserved. 1 # Copyright 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 { 5 {
6 'variables': { 6 'variables': {
7 # There are two sections of sources: 7 # There are two sections of sources:
8 # * "Platform"-based sources (OS, toolkit, etc.) 8 # * "Platform"-based sources (OS, toolkit, etc.)
9 # * Feature/directory-based sources (e.g., history, printing) 9 # * Feature/directory-based sources (e.g., history, printing)
10 10
(...skipping 2779 matching lines...) Expand 10 before | Expand all | Expand 10 after
2790 # Needed by pepper_flash_component_installer.cc. 2790 # Needed by pepper_flash_component_installer.cc.
2791 '<(SHARED_INTERMEDIATE_DIR)', 2791 '<(SHARED_INTERMEDIATE_DIR)',
2792 ], 2792 ],
2793 'export_dependent_settings': [ 2793 'export_dependent_settings': [
2794 '../components/components.gyp:dom_distiller_core', 2794 '../components/components.gyp:dom_distiller_core',
2795 '../sync/sync.gyp:sync', 2795 '../sync/sync.gyp:sync',
2796 ], 2796 ],
2797 'includes': [ 2797 'includes': [
2798 # Disable LTO due to undefined reference 2798 # Disable LTO due to undefined reference
2799 # crbug.com/422252 2799 # crbug.com/422252
2800 '../build/android/disable_lto.gypi', 2800 '../build/android/disable_gcc_lto.gypi',
2801 ], 2801 ],
2802 'conditions': [ 2802 'conditions': [
2803 ['OS != "ios"', { 2803 ['OS != "ios"', {
2804 'sources': [ 2804 'sources': [
2805 '<@(chrome_browser_ui_non_ios_sources)', 2805 '<@(chrome_browser_ui_non_ios_sources)',
2806 '<@(chrome_browser_ui_toolbar_model_sources)', 2806 '<@(chrome_browser_ui_toolbar_model_sources)',
2807 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/ui/webui/omnibox/omnibox. mojom.cc', 2807 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/ui/webui/omnibox/omnibox. mojom.cc',
2808 ], 2808 ],
2809 'dependencies': [ 2809 'dependencies': [
2810 'chrome_web_ui_mojo_bindings.gyp:web_ui_mojo_bindings', 2810 'chrome_web_ui_mojo_bindings.gyp:web_ui_mojo_bindings',
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
3212 ], 3212 ],
3213 'sources': [ 3213 'sources': [
3214 '<@(chrome_browser_ui_non_mobile_sources)', 3214 '<@(chrome_browser_ui_non_mobile_sources)',
3215 '<@(chrome_browser_ui_omnibox_non_mobile_sources)', 3215 '<@(chrome_browser_ui_omnibox_non_mobile_sources)',
3216 ], 3216 ],
3217 }], 3217 }],
3218 ], 3218 ],
3219 }, 3219 },
3220 ], 3220 ],
3221 } 3221 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698