| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 | 9 |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 'conditions': [ | 400 'conditions': [ |
| 401 ['toolkit_uses_gtk == 1', { | 401 ['toolkit_uses_gtk == 1', { |
| 402 'dependencies': [ | 402 'dependencies': [ |
| 403 '../build/linux/system.gyp:gtk', | 403 '../build/linux/system.gyp:gtk', |
| 404 '../build/linux/system.gyp:x11', | 404 '../build/linux/system.gyp:x11', |
| 405 '../build/linux/system.gyp:xext', | 405 '../build/linux/system.gyp:xext', |
| 406 ], | 406 ], |
| 407 'sources!': [ | 407 'sources!': [ |
| 408 'accessibility/native_view_accessibility_win.cc', | 408 'accessibility/native_view_accessibility_win.cc', |
| 409 'controls/scrollbar/bitmap_scroll_bar.cc', | 409 'controls/scrollbar/bitmap_scroll_bar.cc', |
| 410 'controls/combo_box.cc', | |
| 411 'controls/hwnd_view.cc', | |
| 412 'controls/native_control.cc', | 410 'controls/native_control.cc', |
| 413 'controls/table/group_table_view.cc', | 411 'controls/table/group_table_view.cc', |
| 414 'controls/table/table_model.cc', | |
| 415 'controls/table/table_view.cc', | 412 'controls/table/table_view.cc', |
| 416 'controls/table/group_table_view.cc', | 413 'controls/table/group_table_view.cc', |
| 417 'controls/tree/tree_view.cc', | 414 'controls/tree/tree_view.cc', |
| 418 'events/event_win.cc', | 415 'events/event_win.cc', |
| 419 'resize_corner.cc', | |
| 420 'widget/aero_tooltip_manager.cc', | 416 'widget/aero_tooltip_manager.cc', |
| 421 'widget/child_window_message_processor.cc', | 417 'widget/child_window_message_processor.cc', |
| 422 'widget/child_window_message_processor.h', | 418 'widget/child_window_message_processor.h', |
| 423 'widget/native_widget_win.cc', | 419 'widget/native_widget_win.cc', |
| 424 'widget/root_view_drop_target.cc', | |
| 425 'window/hit_test.cc', | |
| 426 'window/native_frame_view.cc', | 420 'window/native_frame_view.cc', |
| 427 ], | 421 ], |
| 428 }], | 422 }], |
| 429 ['touchui==1', { | 423 ['touchui==1', { |
| 430 'defines': ['TOUCH_UI=1'], | 424 'defines': ['TOUCH_UI=1'], |
| 431 'sources/': [ | 425 'sources/': [ |
| 432 ['exclude', 'focus/accelerator_handler_gtk.cc'], | 426 ['exclude', 'focus/accelerator_handler_gtk.cc'], |
| 433 ['exclude', 'controls/menu/native_menu_gtk.cc'], | 427 ['exclude', 'controls/menu/native_menu_gtk.cc'], |
| 434 ], | 428 ], |
| 435 'conditions': [ | 429 'conditions': [ |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 635 ], | 629 ], |
| 636 }, | 630 }, |
| 637 ], | 631 ], |
| 638 } | 632 } |
| 639 | 633 |
| 640 # Local Variables: | 634 # Local Variables: |
| 641 # tab-width:2 | 635 # tab-width:2 |
| 642 # indent-tabs-mode:nil | 636 # indent-tabs-mode:nil |
| 643 # End: | 637 # End: |
| 644 # vim: set expandtab tabstop=2 shiftwidth=2: | 638 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |