| 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 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 }, | 7 }, |
| 8 | 8 |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 'focus/widget_focus_manager.cc', | 271 'focus/widget_focus_manager.cc', |
| 272 'focus/widget_focus_manager.h', | 272 'focus/widget_focus_manager.h', |
| 273 'ime/input_method_base.cc', | 273 'ime/input_method_base.cc', |
| 274 'ime/input_method_base.h', | 274 'ime/input_method_base.h', |
| 275 'ime/input_method_bridge.cc', | 275 'ime/input_method_bridge.cc', |
| 276 'ime/input_method_bridge.h', | 276 'ime/input_method_bridge.h', |
| 277 'ime/input_method_delegate.h', | 277 'ime/input_method_delegate.h', |
| 278 'ime/input_method_gtk.cc', | 278 'ime/input_method_gtk.cc', |
| 279 'ime/input_method_gtk.h', | 279 'ime/input_method_gtk.h', |
| 280 'ime/input_method.h', | 280 'ime/input_method.h', |
| 281 'ime/input_method_ibus.cc', | |
| 282 'ime/input_method_ibus.h', | |
| 283 'ime/input_method_win.cc', | 281 'ime/input_method_win.cc', |
| 284 'ime/input_method_win.h', | 282 'ime/input_method_win.h', |
| 285 'ime/mock_input_method.cc', | 283 'ime/mock_input_method.cc', |
| 286 'ime/mock_input_method.h', | 284 'ime/mock_input_method.h', |
| 287 'ime/text_input_type_tracker.cc', | 285 'ime/text_input_type_tracker.cc', |
| 288 'ime/text_input_type_tracker.h', | 286 'ime/text_input_type_tracker.h', |
| 289 'layout/box_layout.cc', | 287 'layout/box_layout.cc', |
| 290 'layout/box_layout.h', | 288 'layout/box_layout.h', |
| 291 'layout/fill_layout.cc', | 289 'layout/fill_layout.cc', |
| 292 'layout/fill_layout.h', | 290 'layout/fill_layout.h', |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 439 'widget/native_widget_win.cc', | 437 'widget/native_widget_win.cc', |
| 440 ], | 438 ], |
| 441 }], | 439 }], |
| 442 ['use_aura==0', { | 440 ['use_aura==0', { |
| 443 'sources!': [ | 441 'sources!': [ |
| 444 'controls/tabbed_pane/native_tabbed_pane_views.cc', | 442 'controls/tabbed_pane/native_tabbed_pane_views.cc', |
| 445 'controls/tabbed_pane/native_tabbed_pane_views.h', | 443 'controls/tabbed_pane/native_tabbed_pane_views.h', |
| 446 'widget/tooltip_manager_views.cc', | 444 'widget/tooltip_manager_views.cc', |
| 447 ], | 445 ], |
| 448 }], | 446 }], |
| 449 ['use_ibus==1', { | |
| 450 'dependencies': [ | |
| 451 '../../build/linux/system.gyp:ibus', | |
| 452 ], | |
| 453 'sources/': [ | |
| 454 ['exclude', 'ime/mock_input_method.cc'], | |
| 455 ['exclude', 'ime/mock_input_method.h'], | |
| 456 ], | |
| 457 }, { # else: use_ibus != 1 | |
| 458 'sources/': [ | |
| 459 ['exclude', 'ime/input_method_ibus.cc'], | |
| 460 ['exclude', 'ime/input_method_ibus.h'], | |
| 461 ], | |
| 462 }], | |
| 463 ['OS=="win"', { | 447 ['OS=="win"', { |
| 464 'dependencies': [ | 448 'dependencies': [ |
| 465 # For accessibility | 449 # For accessibility |
| 466 '../../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', | 450 '../../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', |
| 467 ], | 451 ], |
| 468 'include_dirs': [ | 452 'include_dirs': [ |
| 469 '../../third_party/wtl/include', | 453 '../../third_party/wtl/include', |
| 470 ], | 454 ], |
| 471 }], | 455 }], |
| 472 ['use_x11==0', { | 456 ['use_x11==0', { |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 739 'msvs_settings': { | 723 'msvs_settings': { |
| 740 'VCManifestTool': { | 724 'VCManifestTool': { |
| 741 'AdditionalManifestFiles': 'examples\\views_examples.exe.manifest'
, | 725 'AdditionalManifestFiles': 'examples\\views_examples.exe.manifest'
, |
| 742 }, | 726 }, |
| 743 }, | 727 }, |
| 744 }], | 728 }], |
| 745 ], | 729 ], |
| 746 }, # target_name: views_examples_lib | 730 }, # target_name: views_examples_lib |
| 747 ], | 731 ], |
| 748 } | 732 } |
| OLD | NEW |