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 'variables': { | 6 'variables': { |
7 'content_shell_product_name': 'Content Shell', | 7 'content_shell_product_name': 'Content Shell', |
8 # The "19" is so that sites that sniff for version think that this is | 8 # The "19" is so that sites that sniff for version think that this is |
9 # something reasonably current; the "77.34.5" is a hint that this isn't a | 9 # something reasonably current; the "77.34.5" is a hint that this isn't a |
10 # standard Chrome. | 10 # standard Chrome. |
(...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
725 'xcode_settings': { | 725 'xcode_settings': { |
726 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', | 726 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', |
727 'INFOPLIST_FILE': 'shell/tools/plugin/mac/Info.plist', | 727 'INFOPLIST_FILE': 'shell/tools/plugin/mac/Info.plist', |
728 }, | 728 }, |
729 }], | 729 }], |
730 ['os_posix == 1 and OS != "mac"', { | 730 ['os_posix == 1 and OS != "mac"', { |
731 'cflags': [ | 731 'cflags': [ |
732 '-fvisibility=default', | 732 '-fvisibility=default', |
733 ], | 733 ], |
734 }], | 734 }], |
735 ['use_x11 == 1', { | |
736 'dependencies': [ '../build/linux/system.gyp:x11' ], | |
737 }], | |
738 ['OS=="win"', { | 735 ['OS=="win"', { |
739 'defines': [ | 736 'defines': [ |
740 # This seems like a hack, but this is what Safari Win does. | 737 # This seems like a hack, but this is what Safari Win does. |
741 'snprintf=_snprintf', | 738 'snprintf=_snprintf', |
742 ], | 739 ], |
743 'sources': [ | 740 'sources': [ |
744 'shell/tools/plugin/win/TestNetscapePlugin.def', | 741 'shell/tools/plugin/win/TestNetscapePlugin.def', |
745 'shell/tools/plugin/win/TestNetscapePlugin.rc', | 742 'shell/tools/plugin/win/TestNetscapePlugin.rc', |
746 ], | 743 ], |
747 # The .rc file requires that the name of the dll is np_test_netscape_p
lugin.dll. | 744 # The .rc file requires that the name of the dll is np_test_netscape_p
lugin.dll. |
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1166 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1163 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
1167 '--destination_dir', '<(dest_dir)', | 1164 '--destination_dir', '<(dest_dir)', |
1168 ], | 1165 ], |
1169 }, | 1166 }, |
1170 ], | 1167 ], |
1171 }, | 1168 }, |
1172 ], | 1169 ], |
1173 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1170 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
1174 ] | 1171 ] |
1175 } | 1172 } |
OLD | NEW |