| 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 'target_defaults': { | 10 'target_defaults': { |
| (...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 ['touchui==1', { | 494 ['touchui==1', { |
| 495 'defines': ['TOUCH_UI=1'], | 495 'defines': ['TOUCH_UI=1'], |
| 496 'sources/': [ | 496 'sources/': [ |
| 497 ['exclude', 'focus/accelerator_handler_gtk.cc'], | 497 ['exclude', 'focus/accelerator_handler_gtk.cc'], |
| 498 ['exclude', 'controls/menu/native_menu_gtk.cc'], | 498 ['exclude', 'controls/menu/native_menu_gtk.cc'], |
| 499 ['exclude', 'widget/tooltip_manager_gtk.cc'], | 499 ['exclude', 'widget/tooltip_manager_gtk.cc'], |
| 500 ], | 500 ], |
| 501 }], | 501 }], |
| 502 ['touchui==0', { | 502 ['touchui==0', { |
| 503 'sources!': [ | 503 'sources!': [ |
| 504 'controls/menu/native_menu_views.cc', | |
| 505 'controls/menu/native_menu_views.h', | |
| 506 'touchui/touch_selection_controller_impl.cc', | 504 'touchui/touch_selection_controller_impl.cc', |
| 507 'touchui/touch_selection_controller_impl.h', | 505 'touchui/touch_selection_controller_impl.h', |
| 508 ], | 506 ], |
| 509 }], | 507 }], |
| 510 ['touchui==0 and use_aura==0', { | 508 ['touchui==0 and use_aura==0', { |
| 511 'sources!': [ | 509 'sources!': [ |
| 510 'controls/menu/native_menu_views.cc', |
| 511 'controls/menu/native_menu_views.h', |
| 512 'widget/tooltip_manager_views.cc', | 512 'widget/tooltip_manager_views.cc', |
| 513 ], | 513 ], |
| 514 }], | 514 }], |
| 515 ['use_ibus==1', { | 515 ['use_ibus==1', { |
| 516 'dependencies': [ | 516 'dependencies': [ |
| 517 '../build/linux/system.gyp:ibus', | 517 '../build/linux/system.gyp:ibus', |
| 518 ], | 518 ], |
| 519 'sources/': [ | 519 'sources/': [ |
| 520 ['exclude', 'ime/mock_input_method.cc'], | 520 ['exclude', 'ime/mock_input_method.cc'], |
| 521 ['exclude', 'ime/mock_input_method.h'], | 521 ['exclude', 'ime/mock_input_method.h'], |
| (...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 922 'include_dirs': [ | 922 'include_dirs': [ |
| 923 '<(DEPTH)/third_party/wtl/include', | 923 '<(DEPTH)/third_party/wtl/include', |
| 924 ], | 924 ], |
| 925 }], | 925 }], |
| 926 ], | 926 ], |
| 927 }, | 927 }, |
| 928 ], | 928 ], |
| 929 }], | 929 }], |
| 930 ], | 930 ], |
| 931 } | 931 } |
| OLD | NEW |