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

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

Issue 10871055: views: Add views_examples_lib target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 592 matching lines...) Expand 10 before | Expand all | Expand 10 after
603 }, { 603 }, {
604 'sources/': [ 604 'sources/': [
605 ['exclude', '../aura/test/test_desktop_delegate.cc'], 605 ['exclude', '../aura/test/test_desktop_delegate.cc'],
606 ['exclude', '../aura/test/test_desktop_delegate.h'], 606 ['exclude', '../aura/test/test_desktop_delegate.h'],
607 ['exclude', 'widget/native_widget_aura_unittest.cc'], 607 ['exclude', 'widget/native_widget_aura_unittest.cc'],
608 ], 608 ],
609 }], 609 }],
610 ], 610 ],
611 }, # target_name: views_unittests 611 }, # target_name: views_unittests
612 { 612 {
613 'target_name': 'views_examples_lib',
614 'type': '<(component)',
615 'dependencies': [
616 '../../base/base.gyp:base',
617 '../../chrome/chrome_resources.gyp:packed_resources',
618 '../../skia/skia.gyp:skia',
619 '../../third_party/icu/icu.gyp:icui18n',
620 '../../third_party/icu/icu.gyp:icuuc',
621 '../ui.gyp:ui',
622 '../ui.gyp:ui_resources',
623 'views',
624 ],
625 'include_dirs': [
626 '..',
627 ],
628 'defines': [
629 'VIEWS_EXAMPLES_IMPLEMENTATION',
630 ],
631 'sources': [
632 'examples/bubble_example.cc',
633 'examples/bubble_example.h',
634 'examples/button_example.cc',
635 'examples/button_example.h',
636 'examples/combobox_example.cc',
637 'examples/combobox_example.h',
638 'examples/double_split_view_example.cc',
639 'examples/double_split_view_example.h',
640 'examples/example_base.cc',
641 'examples/example_base.h',
642 'examples/example_combobox_model.cc',
643 'examples/example_combobox_model.h',
644 'examples/examples_window.cc',
645 'examples/examples_window.h',
646 'examples/link_example.cc',
647 'examples/link_example.h',
648 'examples/message_box_example.cc',
649 'examples/message_box_example.h',
650 'examples/menu_example.cc',
651 'examples/menu_example.h',
652 'examples/native_theme_button_example.cc',
653 'examples/native_theme_button_example.h',
654 'examples/native_theme_checkbox_example.cc',
655 'examples/native_theme_checkbox_example.h',
656 'examples/progress_bar_example.cc',
657 'examples/progress_bar_example.h',
658 'examples/radio_button_example.cc',
659 'examples/radio_button_example.h',
660 'examples/scroll_view_example.cc',
661 'examples/scroll_view_example.h',
662 'examples/single_split_view_example.cc',
663 'examples/single_split_view_example.h',
664 'examples/slider_example.cc',
665 'examples/slider_example.h',
666 'examples/tabbed_pane_example.cc',
667 'examples/tabbed_pane_example.h',
668 'examples/table_example.cc',
669 'examples/table_example.h',
670 'examples/text_example.cc',
671 'examples/text_example.h',
672 'examples/textfield_example.cc',
673 'examples/textfield_example.h',
674 'examples/throbber_example.cc',
675 'examples/throbber_example.h',
676 'examples/tree_view_example.cc',
677 'examples/tree_view_example.h',
678 'examples/views_examples_export.h',
679 'examples/widget_example.cc',
680 'examples/widget_example.h',
681 ],
682 'conditions': [
683 ['OS=="win"', {
684 'include_dirs': [
685 '../third_party/wtl/include',
686 ],
687 }],
688 ],
689 }, # target_name: views_examples_lib
690 {
613 'target_name': 'views_examples_with_content_lib', 691 'target_name': 'views_examples_with_content_lib',
614 'type': '<(component)', 692 'type': '<(component)',
615 'dependencies': [ 693 'dependencies': [
616 '../../base/base.gyp:base', 694 '../../base/base.gyp:base',
617 '../../base/base.gyp:base_i18n', 695 '../../base/base.gyp:base_i18n',
618 '../../build/temp_gyp/googleurl.gyp:googleurl', 696 '../../build/temp_gyp/googleurl.gyp:googleurl',
619 '../../chrome/chrome_resources.gyp:packed_resources', 697 '../../chrome/chrome_resources.gyp:packed_resources',
620 '../../content/content.gyp:content', 698 '../../content/content.gyp:content',
621 '../../skia/skia.gyp:skia', 699 '../../skia/skia.gyp:skia',
622 '../../third_party/icu/icu.gyp:icui18n', 700 '../../third_party/icu/icu.gyp:icui18n',
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
755 'sources/': [ 833 'sources/': [
756 # This is needed because the aura rule strips it from the default 834 # This is needed because the aura rule strips it from the default
757 # sources list. 835 # sources list.
758 ['include', '^../../content/app/startup_helper_win.cc'], 836 ['include', '^../../content/app/startup_helper_win.cc'],
759 ], 837 ],
760 }], 838 }],
761 ], 839 ],
762 }, # target_name: views_examples_with_content_exe 840 }, # target_name: views_examples_with_content_exe
763 ], 841 ],
764 } 842 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698