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 'chrome_browser_ui_non_ios_sources': [ | 7 'chrome_browser_ui_non_ios_sources': [ |
8 'browser/ui/accelerator_utils.h', | 8 'browser/ui/accelerator_utils.h', |
9 'browser/ui/android/android_about_app_info.cc', | 9 'browser/ui/android/android_about_app_info.cc', |
10 'browser/ui/android/android_about_app_info.h', | 10 'browser/ui/android/android_about_app_info.h', |
(...skipping 2580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2591 'include_dirs': [ | 2591 'include_dirs': [ |
2592 '..', | 2592 '..', |
2593 '<(INTERMEDIATE_DIR)', | 2593 '<(INTERMEDIATE_DIR)', |
2594 # Needed by pepper_flash_component_installer.cc. | 2594 # Needed by pepper_flash_component_installer.cc. |
2595 '<(SHARED_INTERMEDIATE_DIR)', | 2595 '<(SHARED_INTERMEDIATE_DIR)', |
2596 ], | 2596 ], |
2597 'export_dependent_settings': [ | 2597 'export_dependent_settings': [ |
2598 '../components/components.gyp:dom_distiller_core', | 2598 '../components/components.gyp:dom_distiller_core', |
2599 '../sync/sync.gyp:sync', | 2599 '../sync/sync.gyp:sync', |
2600 ], | 2600 ], |
| 2601 'includes': [ |
| 2602 # Disable LTO due to undefined reference |
| 2603 # crbug.com/422252 |
| 2604 '../build/android/disable_lto.gypi', |
| 2605 ], |
2601 'conditions': [ | 2606 'conditions': [ |
2602 ['OS != "ios"', { | 2607 ['OS != "ios"', { |
2603 'sources': [ | 2608 'sources': [ |
2604 '<@(chrome_browser_ui_non_ios_sources)', | 2609 '<@(chrome_browser_ui_non_ios_sources)', |
2605 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/ui/webui/omnibox/omnibox.
mojom.cc', | 2610 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/ui/webui/omnibox/omnibox.
mojom.cc', |
2606 ], | 2611 ], |
2607 'dependencies': [ | 2612 'dependencies': [ |
2608 'chrome_web_ui_mojo_bindings.gyp:web_ui_mojo_bindings', | 2613 'chrome_web_ui_mojo_bindings.gyp:web_ui_mojo_bindings', |
2609 'debugger', | 2614 'debugger', |
2610 'installer_util', | 2615 'installer_util', |
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2996 }], | 3001 }], |
2997 ['OS!="android" and OS!="ios"', { | 3002 ['OS!="android" and OS!="ios"', { |
2998 'dependencies': [ | 3003 'dependencies': [ |
2999 '../device/bluetooth/bluetooth.gyp:device_bluetooth', | 3004 '../device/bluetooth/bluetooth.gyp:device_bluetooth', |
3000 ], | 3005 ], |
3001 }], | 3006 }], |
3002 ], | 3007 ], |
3003 }, | 3008 }, |
3004 ], | 3009 ], |
3005 } | 3010 } |
OLD | NEW |