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

Side by Side Diff: base/base.gypi

Issue 235043005: x11: Remove X11 message-pump. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tot-merge Created 6 years, 8 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 | « base/base.gyp ('k') | base/message_loop/message_loop.h » ('j') | 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 { 5 {
6 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'base_target': 0, 8 'base_target': 0,
9 'base_i18n_target': 0, 9 'base_i18n_target': 0,
10 }, 10 },
(...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after
726 ], 726 ],
727 'sources!': [ 727 'sources!': [
728 'atomicops_internals_x86_gcc.cc', 728 'atomicops_internals_x86_gcc.cc',
729 ], 729 ],
730 }], 730 }],
731 ['<(use_glib)==0 or >(nacl_untrusted_build)==1', { 731 ['<(use_glib)==0 or >(nacl_untrusted_build)==1', {
732 'sources!': [ 732 'sources!': [
733 'message_loop/message_pump_glib.cc', 733 'message_loop/message_pump_glib.cc',
734 ], 734 ],
735 }], 735 }],
736 ['<(use_x11)==0 or >(nacl_untrusted_build)==1', {
737 'sources!': [
738 'message_loop/message_pump_x11.cc',
739 ],
740 }],
741 ['<(toolkit_uses_gtk)==0 or >(nacl_untrusted_build)==1', { 736 ['<(toolkit_uses_gtk)==0 or >(nacl_untrusted_build)==1', {
742 'sources!': ['message_loop/message_pump_gtk.cc'], 737 'sources!': ['message_loop/message_pump_gtk.cc'],
743 }], 738 }],
744 ['(OS != "linux" and <(os_bsd) != 1 and OS != "android") or >(nacl_unt rusted_build)==1', { 739 ['(OS != "linux" and <(os_bsd) != 1 and OS != "android") or >(nacl_unt rusted_build)==1', {
745 'sources!': [ 740 'sources!': [
746 # Not automatically excluded by the *linux.cc rules. 741 # Not automatically excluded by the *linux.cc rules.
747 'linux_util.cc', 742 'linux_util.cc',
748 ], 743 ],
749 }, 744 },
750 ], 745 ],
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
884 'posix/file_descriptor_shuffle.cc', 879 'posix/file_descriptor_shuffle.cc',
885 # Not using sha1_win.cc because it may have caused a 880 # Not using sha1_win.cc because it may have caused a
886 # regression to page cycler moz. 881 # regression to page cycler moz.
887 'sha1_win.cc', 882 'sha1_win.cc',
888 'strings/string16.cc', 883 'strings/string16.cc',
889 ], 884 ],
890 },], 885 },],
891 ['<(use_ozone) == 1', { 886 ['<(use_ozone) == 1', {
892 'sources!': [ 887 'sources!': [
893 'message_loop/message_pump_glib.cc', 888 'message_loop/message_pump_glib.cc',
894 'message_loop/message_pump_x11.cc',
895 ] 889 ]
896 }], 890 }],
897 ['OS == "linux" and >(nacl_untrusted_build)==0', { 891 ['OS == "linux" and >(nacl_untrusted_build)==0', {
898 'sources!': [ 892 'sources!': [
899 'files/file_path_watcher_kqueue.cc', 893 'files/file_path_watcher_kqueue.cc',
900 'files/file_path_watcher_stub.cc', 894 'files/file_path_watcher_stub.cc',
901 ], 895 ],
902 }], 896 }],
903 ['(OS == "mac" or OS == "ios") and >(nacl_untrusted_build)==0', { 897 ['(OS == "mac" or OS == "ios") and >(nacl_untrusted_build)==0', {
904 'sources/': [ 898 'sources/': [
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
965 'i18n/time_formatting.h', 959 'i18n/time_formatting.h',
966 'i18n/timezone.cc', 960 'i18n/timezone.cc',
967 'i18n/timezone.h', 961 'i18n/timezone.h',
968 'i18n/utf8_validator_tables.cc', 962 'i18n/utf8_validator_tables.cc',
969 'i18n/utf8_validator_tables.h', 963 'i18n/utf8_validator_tables.h',
970 ], 964 ],
971 }] 965 }]
972 ], 966 ],
973 }, 967 },
974 } 968 }
OLDNEW
« no previous file with comments | « base/base.gyp ('k') | base/message_loop/message_loop.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698