OLD | NEW |
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 Loading... |
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 }], |
736 ['<(toolkit_uses_gtk)==0 or >(nacl_untrusted_build)==1', { | 741 ['<(toolkit_uses_gtk)==0 or >(nacl_untrusted_build)==1', { |
737 'sources!': ['message_loop/message_pump_gtk.cc'], | 742 'sources!': ['message_loop/message_pump_gtk.cc'], |
738 }], | 743 }], |
739 ['(OS != "linux" and <(os_bsd) != 1 and OS != "android") or >(nacl_unt
rusted_build)==1', { | 744 ['(OS != "linux" and <(os_bsd) != 1 and OS != "android") or >(nacl_unt
rusted_build)==1', { |
740 'sources!': [ | 745 'sources!': [ |
741 # Not automatically excluded by the *linux.cc rules. | 746 # Not automatically excluded by the *linux.cc rules. |
742 'linux_util.cc', | 747 'linux_util.cc', |
743 ], | 748 ], |
744 }, | 749 }, |
745 ], | 750 ], |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
879 'posix/file_descriptor_shuffle.cc', | 884 'posix/file_descriptor_shuffle.cc', |
880 # Not using sha1_win.cc because it may have caused a | 885 # Not using sha1_win.cc because it may have caused a |
881 # regression to page cycler moz. | 886 # regression to page cycler moz. |
882 'sha1_win.cc', | 887 'sha1_win.cc', |
883 'strings/string16.cc', | 888 'strings/string16.cc', |
884 ], | 889 ], |
885 },], | 890 },], |
886 ['<(use_ozone) == 1', { | 891 ['<(use_ozone) == 1', { |
887 'sources!': [ | 892 'sources!': [ |
888 'message_loop/message_pump_glib.cc', | 893 'message_loop/message_pump_glib.cc', |
| 894 'message_loop/message_pump_x11.cc', |
889 ] | 895 ] |
890 }], | 896 }], |
891 ['OS == "linux" and >(nacl_untrusted_build)==0', { | 897 ['OS == "linux" and >(nacl_untrusted_build)==0', { |
892 'sources!': [ | 898 'sources!': [ |
893 'files/file_path_watcher_kqueue.cc', | 899 'files/file_path_watcher_kqueue.cc', |
894 'files/file_path_watcher_stub.cc', | 900 'files/file_path_watcher_stub.cc', |
895 ], | 901 ], |
896 }], | 902 }], |
897 ['(OS == "mac" or OS == "ios") and >(nacl_untrusted_build)==0', { | 903 ['(OS == "mac" or OS == "ios") and >(nacl_untrusted_build)==0', { |
898 'sources/': [ | 904 'sources/': [ |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
959 'i18n/time_formatting.h', | 965 'i18n/time_formatting.h', |
960 'i18n/timezone.cc', | 966 'i18n/timezone.cc', |
961 'i18n/timezone.h', | 967 'i18n/timezone.h', |
962 'i18n/utf8_validator_tables.cc', | 968 'i18n/utf8_validator_tables.cc', |
963 'i18n/utf8_validator_tables.h', | 969 'i18n/utf8_validator_tables.h', |
964 ], | 970 ], |
965 }] | 971 }] |
966 ], | 972 ], |
967 }, | 973 }, |
968 } | 974 } |
OLD | NEW |