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 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
923 ['exclude', '^file_util_linux\\.cc$'], | 923 ['exclude', '^file_util_linux\\.cc$'], |
924 ['exclude', '^process/process_linux\\.cc$'], | 924 ['exclude', '^process/process_linux\\.cc$'], |
925 ['exclude', '^sys_info_linux\\.cc$'], | 925 ['exclude', '^sys_info_linux\\.cc$'], |
926 ], | 926 ], |
927 }], | 927 }], |
928 # Remove all unnecessary files for build_nexe.py to avoid exceeding | 928 # Remove all unnecessary files for build_nexe.py to avoid exceeding |
929 # command-line-string limitation when building NaCl on Windows. | 929 # command-line-string limitation when building NaCl on Windows. |
930 ['OS == "win" and >(nacl_untrusted_build)==1', { | 930 ['OS == "win" and >(nacl_untrusted_build)==1', { |
931 'sources/': [ ['exclude', '\\.h$'] ], | 931 'sources/': [ ['exclude', '\\.h$'] ], |
932 }], | 932 }], |
933 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { | |
934 'sources/': [ | |
935 ['exclude', '^third_party/nspr/'], | |
936 ], | |
937 }], | |
938 ['<(toolkit_uses_gtk) == 1', { | 933 ['<(toolkit_uses_gtk) == 1', { |
939 'sources!': [ | 934 'sources!': [ |
940 'x11/x11_error_tracker.cc', | 935 'x11/x11_error_tracker.cc', |
941 ], | 936 ], |
942 }], | 937 }], |
943 ], | 938 ], |
944 }], | 939 }], |
945 ['base_i18n_target==1', { | 940 ['base_i18n_target==1', { |
946 'defines': [ | 941 'defines': [ |
947 'BASE_I18N_IMPLEMENTATION', | 942 'BASE_I18N_IMPLEMENTATION', |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
980 'i18n/time_formatting.h', | 975 'i18n/time_formatting.h', |
981 'i18n/timezone.cc', | 976 'i18n/timezone.cc', |
982 'i18n/timezone.h', | 977 'i18n/timezone.h', |
983 'i18n/utf8_validator_tables.cc', | 978 'i18n/utf8_validator_tables.cc', |
984 'i18n/utf8_validator_tables.h', | 979 'i18n/utf8_validator_tables.h', |
985 ], | 980 ], |
986 }] | 981 }] |
987 ], | 982 ], |
988 }, | 983 }, |
989 } | 984 } |
OLD | NEW |