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

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

Issue 24788002: events: Make it a separate component from ui. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 2 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 | « ui/views/controls/webview/webview.gyp ('k') | 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 'target_defaults': { 8 'target_defaults': {
9 'conditions': [ 9 'conditions': [
10 ['use_aura==1', { 10 ['use_aura==1', {
(...skipping 12 matching lines...) Expand all
23 'dependencies': [ 23 'dependencies': [
24 '../../base/base.gyp:base', 24 '../../base/base.gyp:base',
25 '../../base/base.gyp:base_i18n', 25 '../../base/base.gyp:base_i18n',
26 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations', 26 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations',
27 '../../skia/skia.gyp:skia', 27 '../../skia/skia.gyp:skia',
28 '../../third_party/icu/icu.gyp:icui18n', 28 '../../third_party/icu/icu.gyp:icui18n',
29 '../../third_party/icu/icu.gyp:icuuc', 29 '../../third_party/icu/icu.gyp:icuuc',
30 '../../url/url.gyp:url_lib', 30 '../../url/url.gyp:url_lib',
31 '../base/strings/ui_strings.gyp:ui_strings', 31 '../base/strings/ui_strings.gyp:ui_strings',
32 '../compositor/compositor.gyp:compositor', 32 '../compositor/compositor.gyp:compositor',
33 '../events/events.gyp:events',
33 '../gfx/gfx.gyp:gfx', 34 '../gfx/gfx.gyp:gfx',
34 '../native_theme/native_theme.gyp:native_theme', 35 '../native_theme/native_theme.gyp:native_theme',
35 '../ui.gyp:ui', 36 '../ui.gyp:ui',
36 '../ui.gyp:ui_resources', 37 '../ui.gyp:ui_resources',
37 ], 38 ],
38 'defines': [ 39 'defines': [
39 'VIEWS_IMPLEMENTATION', 40 'VIEWS_IMPLEMENTATION',
40 ], 41 ],
41 'sources': [ 42 'sources': [
42 # All .cc, .h under views, except unittests 43 # All .cc, .h under views, except unittests
(...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after
595 ], 596 ],
596 }, # target_name: views 597 }, # target_name: views
597 { 598 {
598 'target_name': 'views_test_support', 599 'target_name': 'views_test_support',
599 'type': 'static_library', 600 'type': 'static_library',
600 'dependencies': [ 601 'dependencies': [
601 '../../base/base.gyp:base', 602 '../../base/base.gyp:base',
602 '../../ipc/ipc.gyp:test_support_ipc', 603 '../../ipc/ipc.gyp:test_support_ipc',
603 '../../skia/skia.gyp:skia', 604 '../../skia/skia.gyp:skia',
604 '../../testing/gtest.gyp:gtest', 605 '../../testing/gtest.gyp:gtest',
606 '../events/events.gyp:events',
605 '../gfx/gfx.gyp:gfx', 607 '../gfx/gfx.gyp:gfx',
606 '../ui.gyp:ui', 608 '../ui.gyp:ui',
607 'views', 609 'views',
608 ], 610 ],
609 'include_dirs': [ 611 'include_dirs': [
610 '..', 612 '..',
611 ], 613 ],
612 'sources': [ 614 'sources': [
613 'corewm/tooltip_controller_test_helper.cc', 615 'corewm/tooltip_controller_test_helper.cc',
614 'corewm/tooltip_controller_test_helper.h', 616 'corewm/tooltip_controller_test_helper.h',
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
649 { 651 {
650 'target_name': 'views_with_content_test_support', 652 'target_name': 'views_with_content_test_support',
651 'type': 'static_library', 653 'type': 'static_library',
652 'dependencies': [ 654 'dependencies': [
653 '../../base/base.gyp:base', 655 '../../base/base.gyp:base',
654 '../../content/content.gyp:content', 656 '../../content/content.gyp:content',
655 '../../content/content.gyp:test_support_content', 657 '../../content/content.gyp:test_support_content',
656 '../../ipc/ipc.gyp:test_support_ipc', 658 '../../ipc/ipc.gyp:test_support_ipc',
657 '../../skia/skia.gyp:skia', 659 '../../skia/skia.gyp:skia',
658 '../../testing/gtest.gyp:gtest', 660 '../../testing/gtest.gyp:gtest',
661 '../events/events.gyp:events',
659 '../gfx/gfx.gyp:gfx', 662 '../gfx/gfx.gyp:gfx',
660 '../ui.gyp:ui', 663 '../ui.gyp:ui',
661 'controls/webview/webview.gyp:webview', 664 'controls/webview/webview.gyp:webview',
662 'views_test_support', 665 'views_test_support',
663 'views', 666 'views',
664 ], 667 ],
665 'include_dirs': [ 668 'include_dirs': [
666 '..', 669 '..',
667 ], 670 ],
668 'sources': [ 671 'sources': [
(...skipping 14 matching lines...) Expand all
683 '../../chrome/chrome_resources.gyp:packed_resources', 686 '../../chrome/chrome_resources.gyp:packed_resources',
684 '../../skia/skia.gyp:skia', 687 '../../skia/skia.gyp:skia',
685 '../../testing/gmock.gyp:gmock', 688 '../../testing/gmock.gyp:gmock',
686 '../../testing/gtest.gyp:gtest', 689 '../../testing/gtest.gyp:gtest',
687 '../../third_party/icu/icu.gyp:icui18n', 690 '../../third_party/icu/icu.gyp:icui18n',
688 '../../third_party/icu/icu.gyp:icuuc', 691 '../../third_party/icu/icu.gyp:icuuc',
689 '../../url/url.gyp:url_lib', 692 '../../url/url.gyp:url_lib',
690 '../base/strings/ui_strings.gyp:ui_strings', 693 '../base/strings/ui_strings.gyp:ui_strings',
691 '../compositor/compositor.gyp:compositor', 694 '../compositor/compositor.gyp:compositor',
692 '../compositor/compositor.gyp:compositor_test_support', 695 '../compositor/compositor.gyp:compositor_test_support',
696 '../events/events.gyp:events',
693 '../gfx/gfx.gyp:gfx', 697 '../gfx/gfx.gyp:gfx',
694 '../ui.gyp:ui', 698 '../ui.gyp:ui',
695 '../ui.gyp:ui_resources', 699 '../ui.gyp:ui_resources',
696 '../ui.gyp:ui_test_support', 700 '../ui.gyp:ui_test_support',
697 'views', 701 'views',
698 'views_test_support', 702 'views_test_support',
699 ], 703 ],
700 'include_dirs': [ 704 'include_dirs': [
701 '..', 705 '..',
702 ], 706 ],
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
827 }, # target_name: views_unittests 831 }, # target_name: views_unittests
828 { 832 {
829 'target_name': 'views_examples_lib', 833 'target_name': 'views_examples_lib',
830 'type': '<(component)', 834 'type': '<(component)',
831 'dependencies': [ 835 'dependencies': [
832 '../../base/base.gyp:base', 836 '../../base/base.gyp:base',
833 '../../chrome/chrome_resources.gyp:packed_resources', 837 '../../chrome/chrome_resources.gyp:packed_resources',
834 '../../skia/skia.gyp:skia', 838 '../../skia/skia.gyp:skia',
835 '../../third_party/icu/icu.gyp:icui18n', 839 '../../third_party/icu/icu.gyp:icui18n',
836 '../../third_party/icu/icu.gyp:icuuc', 840 '../../third_party/icu/icu.gyp:icuuc',
841 '../events/events.gyp:events',
837 '../gfx/gfx.gyp:gfx', 842 '../gfx/gfx.gyp:gfx',
838 '../ui.gyp:ui', 843 '../ui.gyp:ui',
839 '../ui.gyp:ui_resources', 844 '../ui.gyp:ui_resources',
840 'views', 845 'views',
841 ], 846 ],
842 'include_dirs': [ 847 'include_dirs': [
843 '..', 848 '..',
844 ], 849 ],
845 'defines': [ 850 'defines': [
846 'VIEWS_EXAMPLES_IMPLEMENTATION', 851 'VIEWS_EXAMPLES_IMPLEMENTATION',
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
920 'type': '<(component)', 925 'type': '<(component)',
921 'dependencies': [ 926 'dependencies': [
922 '../../base/base.gyp:base', 927 '../../base/base.gyp:base',
923 '../../base/base.gyp:base_i18n', 928 '../../base/base.gyp:base_i18n',
924 '../../chrome/chrome_resources.gyp:packed_resources', 929 '../../chrome/chrome_resources.gyp:packed_resources',
925 '../../content/content.gyp:content', 930 '../../content/content.gyp:content',
926 '../../skia/skia.gyp:skia', 931 '../../skia/skia.gyp:skia',
927 '../../third_party/icu/icu.gyp:icui18n', 932 '../../third_party/icu/icu.gyp:icui18n',
928 '../../third_party/icu/icu.gyp:icuuc', 933 '../../third_party/icu/icu.gyp:icuuc',
929 '../../url/url.gyp:url_lib', 934 '../../url/url.gyp:url_lib',
935 '../events/events.gyp:events',
930 '../gfx/gfx.gyp:gfx', 936 '../gfx/gfx.gyp:gfx',
931 '../ui.gyp:ui', 937 '../ui.gyp:ui',
932 '../ui.gyp:ui_resources', 938 '../ui.gyp:ui_resources',
933 'controls/webview/webview.gyp:webview', 939 'controls/webview/webview.gyp:webview',
934 'views', 940 'views',
935 ], 941 ],
936 'include_dirs': [ 942 'include_dirs': [
937 '..', 943 '..',
938 ], 944 ],
939 'defines': [ 945 'defines': [
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
1010 'dependencies': [ 1016 'dependencies': [
1011 '../../base/base.gyp:base', 1017 '../../base/base.gyp:base',
1012 '../../base/base.gyp:base_i18n', 1018 '../../base/base.gyp:base_i18n',
1013 '../../chrome/chrome_resources.gyp:packed_resources', 1019 '../../chrome/chrome_resources.gyp:packed_resources',
1014 '../../content/content.gyp:content', 1020 '../../content/content.gyp:content',
1015 '../../content/content.gyp:content_shell_lib', 1021 '../../content/content.gyp:content_shell_lib',
1016 '../../content/content.gyp:test_support_content', 1022 '../../content/content.gyp:test_support_content',
1017 '../../skia/skia.gyp:skia', 1023 '../../skia/skia.gyp:skia',
1018 '../../third_party/icu/icu.gyp:icui18n', 1024 '../../third_party/icu/icu.gyp:icui18n',
1019 '../../third_party/icu/icu.gyp:icuuc', 1025 '../../third_party/icu/icu.gyp:icuuc',
1026 '../events/events.gyp:events',
1020 '../gfx/gfx.gyp:gfx', 1027 '../gfx/gfx.gyp:gfx',
1021 '../ui.gyp:ui', 1028 '../ui.gyp:ui',
1022 '../ui.gyp:ui_resources', 1029 '../ui.gyp:ui_resources',
1023 'views', 1030 'views',
1024 'views_examples_with_content_lib', 1031 'views_examples_with_content_lib',
1025 'views_test_support' 1032 'views_test_support'
1026 ], 1033 ],
1027 'include_dirs': [ 1034 'include_dirs': [
1028 '../..', 1035 '../..',
1029 ], 1036 ],
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
1068 'sources/': [ 1075 'sources/': [
1069 # This is needed because the aura rule strips it from the default 1076 # This is needed because the aura rule strips it from the default
1070 # sources list. 1077 # sources list.
1071 ['include', '^../../content/app/startup_helper_win.cc'], 1078 ['include', '^../../content/app/startup_helper_win.cc'],
1072 ], 1079 ],
1073 }], 1080 }],
1074 ], 1081 ],
1075 }, # target_name: views_examples_with_content_exe 1082 }, # target_name: views_examples_with_content_exe
1076 ], 1083 ],
1077 } 1084 }
OLDNEW
« no previous file with comments | « ui/views/controls/webview/webview.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698