Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(292)

Side by Side Diff: ui/views/views.gyp

Issue 10797046: (Views only): Allow choosing between NativeTabbedPaneView and NativeTabbedPaneWin on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Make CreateNativeWrapper a function in an anonymous namespace. Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 '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 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 ['exclude', 'controls/menu/*'], 402 ['exclude', 'controls/menu/*'],
403 ['exclude', 'controls/scrollbar/*'], 403 ['exclude', 'controls/scrollbar/*'],
404 ['exclude', 'focus/accelerator_handler_aura.cc'], 404 ['exclude', 'focus/accelerator_handler_aura.cc'],
405 ['exclude', 'widget/tooltip_manager_views.cc'], 405 ['exclude', 'widget/tooltip_manager_views.cc'],
406 ], 406 ],
407 }], 407 }],
408 ], 408 ],
409 }], 409 }],
410 ['use_aura==0', { 410 ['use_aura==0', {
411 'sources!': [ 411 'sources!': [
412 'controls/tabbed_pane/native_tabbed_pane_views.cc',
413 'controls/tabbed_pane/native_tabbed_pane_views.h',
414 'widget/tooltip_manager_views.cc', 412 'widget/tooltip_manager_views.cc',
415 ], 413 ],
416 }], 414 }],
417 ['use_aura==0 and OS=="win"', { 415 ['use_aura==0 and OS=="win"', {
418 'sources!': [ 416 'sources!': [
419 'controls/menu/menu_config_views.cc', 417 'controls/menu/menu_config_views.cc',
420 'controls/menu/menu_item_view_views.cc', 418 'controls/menu/menu_item_view_views.cc',
421 'controls/menu/menu_separator_views.cc', 419 'controls/menu/menu_separator_views.cc',
422 'controls/table/group_table_view_views.cc', 420 'controls/table/group_table_view_views.cc',
423 'controls/table/group_table_view_views.h', 421 'controls/table/group_table_view_views.h',
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
734 'sources/': [ 732 'sources/': [
735 # This is needed because the aura rule strips it from the default 733 # This is needed because the aura rule strips it from the default
736 # sources list. 734 # sources list.
737 ['include', '^../../content/app/startup_helper_win.cc'], 735 ['include', '^../../content/app/startup_helper_win.cc'],
738 ], 736 ],
739 }], 737 }],
740 ], 738 ],
741 }, # target_name: views_examples_lib 739 }, # target_name: views_examples_lib
742 ], 740 ],
743 } 741 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698