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 713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
724 }, | 724 }, |
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 'link_settings': { 'libraries': [ '-lX11' ] }, | |
jamesr
2015/01/17 02:07:08
system.gyp:x11
Nico
2015/01/17 03:18:18
Done.
| |
734 }], | 735 }], |
735 ['OS=="win"', { | 736 ['OS=="win"', { |
736 'defines': [ | 737 'defines': [ |
737 # This seems like a hack, but this is what Safari Win does. | 738 # This seems like a hack, but this is what Safari Win does. |
738 'snprintf=_snprintf', | 739 'snprintf=_snprintf', |
739 ], | 740 ], |
740 'sources': [ | 741 'sources': [ |
741 'shell/tools/plugin/win/TestNetscapePlugin.def', | 742 'shell/tools/plugin/win/TestNetscapePlugin.def', |
742 'shell/tools/plugin/win/TestNetscapePlugin.rc', | 743 'shell/tools/plugin/win/TestNetscapePlugin.rc', |
743 ], | 744 ], |
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1163 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1164 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
1164 '--destination_dir', '<(dest_dir)', | 1165 '--destination_dir', '<(dest_dir)', |
1165 ], | 1166 ], |
1166 }, | 1167 }, |
1167 ], | 1168 ], |
1168 }, | 1169 }, |
1169 ], | 1170 ], |
1170 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1171 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
1171 ] | 1172 ] |
1172 } | 1173 } |
OLD | NEW |