| 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 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 | 7 |
| 8 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
| 9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
| 10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
| (...skipping 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 ], | 695 ], |
| 696 'sources': [ | 696 'sources': [ |
| 697 'tools/mac_helpers/infoplist_strings_util.mm', | 697 'tools/mac_helpers/infoplist_strings_util.mm', |
| 698 ], | 698 ], |
| 699 }, | 699 }, |
| 700 ], # targets | 700 ], # targets |
| 701 }], # OS=="mac" | 701 }], # OS=="mac" |
| 702 ['OS!="mac" and OS!="ios"', { | 702 ['OS!="mac" and OS!="ios"', { |
| 703 'targets': [ | 703 'targets': [ |
| 704 { | 704 { |
| 705 'target_name': 'convert_dict', | |
| 706 'type': 'executable', | |
| 707 'variables': { 'enable_wexit_time_destructors': 1, }, | |
| 708 'dependencies': [ | |
| 709 '../base/base.gyp:base', | |
| 710 '../base/base.gyp:base_i18n', | |
| 711 'convert_dict_lib', | |
| 712 '../third_party/hunspell/hunspell.gyp:hunspell', | |
| 713 ], | |
| 714 'sources': [ | |
| 715 'tools/convert_dict/convert_dict.cc', | |
| 716 ], | |
| 717 }, | |
| 718 { | |
| 719 'target_name': 'convert_dict_lib', | |
| 720 'product_name': 'convert_dict', | |
| 721 'type': 'static_library', | |
| 722 'variables': { 'enable_wexit_time_destructors': 1, }, | |
| 723 'include_dirs': [ | |
| 724 '..', | |
| 725 ], | |
| 726 'dependencies': [ | |
| 727 '../base/base.gyp:base', | |
| 728 ], | |
| 729 'sources': [ | |
| 730 'tools/convert_dict/aff_reader.cc', | |
| 731 'tools/convert_dict/aff_reader.h', | |
| 732 'tools/convert_dict/dic_reader.cc', | |
| 733 'tools/convert_dict/dic_reader.h', | |
| 734 'tools/convert_dict/hunspell_reader.cc', | |
| 735 'tools/convert_dict/hunspell_reader.h', | |
| 736 ], | |
| 737 }, | |
| 738 { | |
| 739 'target_name': 'flush_cache', | 705 'target_name': 'flush_cache', |
| 740 'type': 'executable', | 706 'type': 'executable', |
| 741 'dependencies': [ | 707 'dependencies': [ |
| 742 '../base/base.gyp:base', | 708 '../base/base.gyp:base', |
| 743 '../base/base.gyp:test_support_base', | 709 '../base/base.gyp:test_support_base', |
| 744 ], | 710 ], |
| 745 'sources': [ | 711 'sources': [ |
| 746 'tools/perf/flush_cache/flush_cache.cc', | 712 'tools/perf/flush_cache/flush_cache.cc', |
| 747 ], | 713 ], |
| 748 }, | 714 }, |
| (...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1162 'sources': [ | 1128 'sources': [ |
| 1163 'service/cloud_print/print_system_cups.cc', | 1129 'service/cloud_print/print_system_cups.cc', |
| 1164 ], | 1130 ], |
| 1165 }], | 1131 }], |
| 1166 ], | 1132 ], |
| 1167 }, | 1133 }, |
| 1168 ], | 1134 ], |
| 1169 }], | 1135 }], |
| 1170 ], # 'conditions' | 1136 ], # 'conditions' |
| 1171 } | 1137 } |
| OLD | NEW |