OLD | NEW |
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 2879 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2890 'export_dependent_settings': [ | 2890 'export_dependent_settings': [ |
2891 '../components/components.gyp:autofill_core_browser', | 2891 '../components/components.gyp:autofill_core_browser', |
2892 '../content/content.gyp:content_browser', | 2892 '../content/content.gyp:content_browser', |
2893 '../sql/sql.gyp:sql', | 2893 '../sql/sql.gyp:sql', |
2894 '../sync/sync.gyp:sync', | 2894 '../sync/sync.gyp:sync', |
2895 ], | 2895 ], |
2896 # sources applied to all configurations | 2896 # sources applied to all configurations |
2897 'sources': [ | 2897 'sources': [ |
2898 '<@(chrome_browser_undo_sources)', | 2898 '<@(chrome_browser_undo_sources)', |
2899 ], | 2899 ], |
| 2900 'includes': [ |
| 2901 # Disable LTO due to ELF section name out of range |
| 2902 # crbug.com/422251 |
| 2903 '../build/android/disable_lto.gypi', |
| 2904 ], |
2900 'conditions': [ | 2905 'conditions': [ |
2901 ['OS != "ios"', { | 2906 ['OS != "ios"', { |
2902 'dependencies': [ | 2907 'dependencies': [ |
2903 'apps', | 2908 'apps', |
2904 'debugger', | 2909 'debugger', |
2905 'installer_util', | 2910 'installer_util', |
2906 '../third_party/re2/re2.gyp:re2', | 2911 '../third_party/re2/re2.gyp:re2', |
2907 '../cc/cc.gyp:cc', | 2912 '../cc/cc.gyp:cc', |
2908 '../components/components.gyp:autofill_content_browser', | 2913 '../components/components.gyp:autofill_content_browser', |
2909 '../components/components.gyp:dom_distiller_content', | 2914 '../components/components.gyp:dom_distiller_content', |
(...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3615 'variables': { | 3620 'variables': { |
3616 'proto_in_dir': 'browser/sync_file_system/drive_backend', | 3621 'proto_in_dir': 'browser/sync_file_system/drive_backend', |
3617 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', | 3622 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', |
3618 }, | 3623 }, |
3619 'includes': [ '../build/protoc.gypi' ] | 3624 'includes': [ '../build/protoc.gypi' ] |
3620 }, | 3625 }, |
3621 ], | 3626 ], |
3622 },], | 3627 },], |
3623 ], | 3628 ], |
3624 } | 3629 } |
OLD | NEW |