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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 646873004: Add Link-Time Optimizations support for Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 # All .cc, .h, .m, and .mm files under browser except for: 7 # All .cc, .h, .m, and .mm files under browser except for:
8 # * tests and mocks. 8 # * tests and mocks.
9 # * code below browser/chromeos 9 # * code below browser/chromeos
10 # * code below browser/extensions 10 # * code below browser/extensions
(...skipping 2873 matching lines...) Expand 10 before | Expand all | Expand 10 after
2884 'export_dependent_settings': [ 2884 'export_dependent_settings': [
2885 '../components/components.gyp:autofill_core_browser', 2885 '../components/components.gyp:autofill_core_browser',
2886 '../content/content.gyp:content_browser', 2886 '../content/content.gyp:content_browser',
2887 '../sql/sql.gyp:sql', 2887 '../sql/sql.gyp:sql',
2888 '../sync/sync.gyp:sync', 2888 '../sync/sync.gyp:sync',
2889 ], 2889 ],
2890 # sources applied to all configurations 2890 # sources applied to all configurations
2891 'sources': [ 2891 'sources': [
2892 '<@(chrome_browser_undo_sources)', 2892 '<@(chrome_browser_undo_sources)',
2893 ], 2893 ],
2894 'includes': [
2895 # Disable LTO due to ELF section name out of range
2896 # crbug.com/422251
2897 '../build/android/disable_lto.gypi',
2898 ],
2894 'conditions': [ 2899 'conditions': [
2895 ['OS != "ios"', { 2900 ['OS != "ios"', {
2896 'dependencies': [ 2901 'dependencies': [
2897 'apps', 2902 'apps',
2898 'debugger', 2903 'debugger',
2899 'installer_util', 2904 'installer_util',
2900 '../third_party/re2/re2.gyp:re2', 2905 '../third_party/re2/re2.gyp:re2',
2901 '../cc/cc.gyp:cc', 2906 '../cc/cc.gyp:cc',
2902 '../components/components.gyp:autofill_content_browser', 2907 '../components/components.gyp:autofill_content_browser',
2903 '../components/components.gyp:dom_distiller_content', 2908 '../components/components.gyp:dom_distiller_content',
(...skipping 697 matching lines...) Expand 10 before | Expand all | Expand 10 after
3601 'variables': { 3606 'variables': {
3602 'proto_in_dir': 'browser/sync_file_system/drive_backend', 3607 'proto_in_dir': 'browser/sync_file_system/drive_backend',
3603 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', 3608 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend',
3604 }, 3609 },
3605 'includes': [ '../build/protoc.gypi' ] 3610 'includes': [ '../build/protoc.gypi' ]
3606 }, 3611 },
3607 ], 3612 ],
3608 },], 3613 },],
3609 ], 3614 ],
3610 } 3615 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698