| 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 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 677 'files': ['<(PRODUCT_DIR)/libtest_netscape_plugin.so'], | 677 'files': ['<(PRODUCT_DIR)/libtest_netscape_plugin.so'], |
| 678 }], | 678 }], |
| 679 }], | 679 }], |
| 680 ], | 680 ], |
| 681 } | 681 } |
| 682 ], | 682 ], |
| 683 'conditions': [ | 683 'conditions': [ |
| 684 ['OS=="mac"', { | 684 ['OS=="mac"', { |
| 685 'targets': [ | 685 'targets': [ |
| 686 { | 686 { |
| 687 # GN version: //content/shell:framework |
| 687 'target_name': 'content_shell_framework', | 688 'target_name': 'content_shell_framework', |
| 688 'type': 'shared_library', | 689 'type': 'shared_library', |
| 689 'product_name': '<(content_shell_product_name) Framework', | 690 'product_name': '<(content_shell_product_name) Framework', |
| 690 'mac_bundle': 1, | 691 'mac_bundle': 1, |
| 691 'mac_bundle_resources': [ | 692 'mac_bundle_resources': [ |
| 692 'shell/app/English.lproj/HttpAuth.xib', | 693 'shell/app/English.lproj/HttpAuth.xib', |
| 693 'shell/app/English.lproj/MainMenu.xib', | 694 'shell/app/English.lproj/MainMenu.xib', |
| 694 '<(PRODUCT_DIR)/content_shell.pak', | 695 '<(PRODUCT_DIR)/content_shell.pak', |
| 695 'shell/app/framework-Info.plist', | 696 'shell/app/framework-Info.plist', |
| 696 ], | 697 ], |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1001 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1002 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
| 1002 '--destination_dir', '<(dest_dir)', | 1003 '--destination_dir', '<(dest_dir)', |
| 1003 ], | 1004 ], |
| 1004 }, | 1005 }, |
| 1005 ], | 1006 ], |
| 1006 }, | 1007 }, |
| 1007 ], | 1008 ], |
| 1008 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1009 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
| 1009 ] | 1010 ] |
| 1010 } | 1011 } |
| OLD | NEW |