| 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 681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 692 'defines': [ | 692 'defines': [ |
| 693 'BASE_IMPLEMENTATION', | 693 'BASE_IMPLEMENTATION', |
| 694 ], | 694 ], |
| 695 'include_dirs': [ | 695 'include_dirs': [ |
| 696 '..', | 696 '..', |
| 697 ], | 697 ], |
| 698 'msvs_disabled_warnings': [ | 698 'msvs_disabled_warnings': [ |
| 699 4018, | 699 4018, |
| 700 ], | 700 ], |
| 701 'target_conditions': [ | 701 'target_conditions': [ |
| 702 ['<(use_glib)==0 or >(nacl_untrusted_build)==1', { | 702 ['(<(desktop_linux) == 0 and <(chromeos) == 0) or >(nacl_untrusted_bui
ld)==1', { |
| 703 'sources/': [ | 703 'sources/': [ |
| 704 ['exclude', '^nix/'], | 704 ['exclude', '^nix/'], |
| 705 ], | 705 ], |
| 706 'sources!': [ | 706 'sources!': [ |
| 707 'atomicops_internals_x86_gcc.cc', | 707 'atomicops_internals_x86_gcc.cc', |
| 708 ], |
| 709 }], |
| 710 ['<(use_glib)==0 or >(nacl_untrusted_build)==1', { |
| 711 'sources!': [ |
| 708 'message_loop/message_pump_glib.cc', | 712 'message_loop/message_pump_glib.cc', |
| 713 ], |
| 714 }], |
| 715 ['<(use_x11)==0 or >(nacl_untrusted_build)==1', { |
| 716 'sources!': [ |
| 709 'message_loop/message_pump_x11.cc', | 717 'message_loop/message_pump_x11.cc', |
| 710 ], | 718 ], |
| 711 }], | 719 }], |
| 712 ['<(toolkit_uses_gtk)==0 or >(nacl_untrusted_build)==1', { | 720 ['<(toolkit_uses_gtk)==0 or >(nacl_untrusted_build)==1', { |
| 713 'sources!': ['message_loop/message_pump_gtk.cc'], | 721 'sources!': ['message_loop/message_pump_gtk.cc'], |
| 714 }], | 722 }], |
| 715 ['(OS != "linux" and <(os_bsd) != 1 and OS != "android") or >(nacl_unt
rusted_build)==1', { | 723 ['(OS != "linux" and <(os_bsd) != 1 and OS != "android") or >(nacl_unt
rusted_build)==1', { |
| 716 'sources!': [ | 724 'sources!': [ |
| 717 # Not automatically excluded by the *linux.cc rules. | 725 # Not automatically excluded by the *linux.cc rules. |
| 718 'linux_util.cc', | 726 'linux_util.cc', |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 927 ['<(toolkit_uses_gtk) == 1', { | 935 ['<(toolkit_uses_gtk) == 1', { |
| 928 'sources!': [ | 936 'sources!': [ |
| 929 'x11/x11_error_tracker.cc', | 937 'x11/x11_error_tracker.cc', |
| 930 ], | 938 ], |
| 931 }], | 939 }], |
| 932 ], | 940 ], |
| 933 }], | 941 }], |
| 934 ], | 942 ], |
| 935 }, | 943 }, |
| 936 } | 944 } |
| OLD | NEW |