| 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 2872 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2883 'export_dependent_settings': [ | 2883 'export_dependent_settings': [ |
| 2884 '../components/components.gyp:autofill_core_browser', | 2884 '../components/components.gyp:autofill_core_browser', |
| 2885 '../content/content.gyp:content_browser', | 2885 '../content/content.gyp:content_browser', |
| 2886 '../sql/sql.gyp:sql', | 2886 '../sql/sql.gyp:sql', |
| 2887 '../sync/sync.gyp:sync', | 2887 '../sync/sync.gyp:sync', |
| 2888 ], | 2888 ], |
| 2889 # sources applied to all configurations | 2889 # sources applied to all configurations |
| 2890 'sources': [ | 2890 'sources': [ |
| 2891 '<@(chrome_browser_undo_sources)', | 2891 '<@(chrome_browser_undo_sources)', |
| 2892 ], | 2892 ], |
| 2893 'includes': [ |
| 2894 # Disable LTO due to ELF section name out of range |
| 2895 # crbug.com/422251 |
| 2896 '../build/android/disable_lto.gypi', |
| 2897 ], |
| 2893 'conditions': [ | 2898 'conditions': [ |
| 2894 ['OS != "ios"', { | 2899 ['OS != "ios"', { |
| 2895 'dependencies': [ | 2900 'dependencies': [ |
| 2896 'apps', | 2901 'apps', |
| 2897 'debugger', | 2902 'debugger', |
| 2898 'installer_util', | 2903 'installer_util', |
| 2899 '../third_party/re2/re2.gyp:re2', | 2904 '../third_party/re2/re2.gyp:re2', |
| 2900 '../cc/cc.gyp:cc', | 2905 '../cc/cc.gyp:cc', |
| 2901 '../components/components.gyp:autofill_content_browser', | 2906 '../components/components.gyp:autofill_content_browser', |
| 2902 '../components/components.gyp:dom_distiller_content', | 2907 '../components/components.gyp:dom_distiller_content', |
| (...skipping 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3600 'variables': { | 3605 'variables': { |
| 3601 'proto_in_dir': 'browser/sync_file_system/drive_backend', | 3606 'proto_in_dir': 'browser/sync_file_system/drive_backend', |
| 3602 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', | 3607 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', |
| 3603 }, | 3608 }, |
| 3604 'includes': [ '../build/protoc.gypi' ] | 3609 'includes': [ '../build/protoc.gypi' ] |
| 3605 }, | 3610 }, |
| 3606 ], | 3611 ], |
| 3607 },], | 3612 },], |
| 3608 ], | 3613 ], |
| 3609 } | 3614 } |
| OLD | NEW |