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