| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 'ui_resources.gypi', | 10 'ui_resources.gypi', |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 'base/cursor/cursor_loader_win.h', | 138 'base/cursor/cursor_loader_win.h', |
| 139 'base/cursor/cursor_loader_x11.cc', | 139 'base/cursor/cursor_loader_x11.cc', |
| 140 'base/cursor/cursor_loader_x11.h', | 140 'base/cursor/cursor_loader_x11.h', |
| 141 'base/cursor/cursor_win.cc', | 141 'base/cursor/cursor_win.cc', |
| 142 'base/cursor/cursor_x11.cc', | 142 'base/cursor/cursor_x11.cc', |
| 143 'base/cursor/cursors_aura.cc', | 143 'base/cursor/cursors_aura.cc', |
| 144 'base/cursor/cursors_aura.h', | 144 'base/cursor/cursors_aura.h', |
| 145 'base/default_theme_provider.cc', | 145 'base/default_theme_provider.cc', |
| 146 'base/default_theme_provider.h', | 146 'base/default_theme_provider.h', |
| 147 'base/default_theme_provider_mac.mm', | 147 'base/default_theme_provider_mac.mm', |
| 148 'base/device_form_factor_android.cc', |
| 149 'base/device_form_factor_desktop.cc', |
| 150 'base/device_form_factor_ios.mm', |
| 151 'base/device_form_factor.h', |
| 148 'base/dragdrop/cocoa_dnd_util.h', | 152 'base/dragdrop/cocoa_dnd_util.h', |
| 149 'base/dragdrop/cocoa_dnd_util.mm', | 153 'base/dragdrop/cocoa_dnd_util.mm', |
| 150 'base/dragdrop/drag_drop_types.h', | 154 'base/dragdrop/drag_drop_types.h', |
| 151 'base/dragdrop/drag_drop_types_win.cc', | 155 'base/dragdrop/drag_drop_types_win.cc', |
| 152 'base/dragdrop/drag_source_win.cc', | 156 'base/dragdrop/drag_source_win.cc', |
| 153 'base/dragdrop/drag_source_win.h', | 157 'base/dragdrop/drag_source_win.h', |
| 154 'base/dragdrop/drag_utils.cc', | 158 'base/dragdrop/drag_utils.cc', |
| 155 'base/dragdrop/drag_utils.h', | 159 'base/dragdrop/drag_utils.h', |
| 156 'base/dragdrop/drag_utils_aura.cc', | 160 'base/dragdrop/drag_utils_aura.cc', |
| 157 'base/dragdrop/drag_utils_win.cc', | 161 'base/dragdrop/drag_utils_win.cc', |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 560 'libraries': [ | 564 'libraries': [ |
| 561 '-ljnigraphics', | 565 '-ljnigraphics', |
| 562 ], | 566 ], |
| 563 }, | 567 }, |
| 564 }], | 568 }], |
| 565 ['OS=="android" and android_webview_build==0', { | 569 ['OS=="android" and android_webview_build==0', { |
| 566 'dependencies': [ | 570 'dependencies': [ |
| 567 'ui_java', | 571 'ui_java', |
| 568 ], | 572 ], |
| 569 }], | 573 }], |
| 574 ['OS=="android" or OS=="ios"', { |
| 575 'sources!': [ |
| 576 'base/device_form_factor_desktop.cc' |
| 577 ], |
| 578 }], |
| 570 ['OS=="linux"', { | 579 ['OS=="linux"', { |
| 571 'libraries': [ | 580 'libraries': [ |
| 572 '-ldl', | 581 '-ldl', |
| 573 ], | 582 ], |
| 574 }], | 583 }], |
| 575 ['use_system_icu==1', { | 584 ['use_system_icu==1', { |
| 576 # When using the system icu, the icu targets generate shim headers | 585 # When using the system icu, the icu targets generate shim headers |
| 577 # which are included by public headers in the ui target, so we need | 586 # which are included by public headers in the ui target, so we need |
| 578 # ui to be a hard dependency for all its users. | 587 # ui to be a hard dependency for all its users. |
| 579 'hard_dependency': 1, | 588 'hard_dependency': 1, |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 720 'xcode_settings': { | 729 'xcode_settings': { |
| 721 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', | 730 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', |
| 722 }, | 731 }, |
| 723 }], | 732 }], |
| 724 ], | 733 ], |
| 725 }, | 734 }, |
| 726 ], | 735 ], |
| 727 }], | 736 }], |
| 728 ], | 737 ], |
| 729 } | 738 } |
| OLD | NEW |