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 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
660 'win/startup_information.cc', | 660 'win/startup_information.cc', |
661 'win/startup_information.h', | 661 'win/startup_information.h', |
662 'win/text_services_message_filter.cc', | 662 'win/text_services_message_filter.cc', |
663 'win/text_services_message_filter.h', | 663 'win/text_services_message_filter.h', |
664 'win/win_util.cc', | 664 'win/win_util.cc', |
665 'win/win_util.h', | 665 'win/win_util.h', |
666 'win/windows_version.cc', | 666 'win/windows_version.cc', |
667 'win/windows_version.h', | 667 'win/windows_version.h', |
668 'win/wrapped_window_proc.cc', | 668 'win/wrapped_window_proc.cc', |
669 'win/wrapped_window_proc.h', | 669 'win/wrapped_window_proc.h', |
| 670 'x11/x11_error_tracker.cc', |
| 671 'x11/x11_error_tracker.h', |
| 672 'x11/x11_error_tracker_gtk.cc', |
670 ], | 673 ], |
671 'conditions': [ | 674 'conditions': [ |
672 ['google_tv==1', { | 675 ['google_tv==1', { |
673 'sources': [ | 676 'sources': [ |
674 'android/context_types.cc', | 677 'android/context_types.cc', |
675 'android/context_types.h', | 678 'android/context_types.h', |
676 ], | 679 ], |
677 }], | 680 }], |
678 ], | 681 ], |
679 'defines': [ | 682 'defines': [ |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
896 # Remove all unnecessary files for build_nexe.py to avoid exceeding | 899 # Remove all unnecessary files for build_nexe.py to avoid exceeding |
897 # command-line-string limitation when building NaCl on Windows. | 900 # command-line-string limitation when building NaCl on Windows. |
898 ['OS == "win" and >(nacl_untrusted_build)==1', { | 901 ['OS == "win" and >(nacl_untrusted_build)==1', { |
899 'sources/': [ ['exclude', '\\.h$'] ], | 902 'sources/': [ ['exclude', '\\.h$'] ], |
900 }], | 903 }], |
901 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { | 904 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { |
902 'sources/': [ | 905 'sources/': [ |
903 ['exclude', '^third_party/nspr/'], | 906 ['exclude', '^third_party/nspr/'], |
904 ], | 907 ], |
905 }], | 908 }], |
| 909 ['<(toolkit_uses_gtk) == 1', { |
| 910 'sources!': [ |
| 911 'x11/x11_error_tracker.cc', |
| 912 ], |
| 913 }, { # toolkit_uses_gtk!=1 |
| 914 'sources!': [ |
| 915 'x11/x11_error_tracker_gtk.cc', |
| 916 ], |
| 917 }], |
906 ], | 918 ], |
907 }], | 919 }], |
908 ], | 920 ], |
909 }, | 921 }, |
910 } | 922 } |
OLD | NEW |