| 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 779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 790 'files': ['<(PRODUCT_DIR)/libtest_netscape_plugin.so'], | 790 'files': ['<(PRODUCT_DIR)/libtest_netscape_plugin.so'], |
| 791 }], | 791 }], |
| 792 }], | 792 }], |
| 793 ], | 793 ], |
| 794 } | 794 } |
| 795 ], | 795 ], |
| 796 'conditions': [ | 796 'conditions': [ |
| 797 ['OS=="mac" or OS=="win"', { | 797 ['OS=="mac" or OS=="win"', { |
| 798 'targets': [ | 798 'targets': [ |
| 799 { | 799 { |
| 800 # GN version: //content/shell:layout_test_helper |
| 800 'target_name': 'layout_test_helper', | 801 'target_name': 'layout_test_helper', |
| 801 'type': 'executable', | 802 'type': 'executable', |
| 802 'sources': [ | 803 'sources': [ |
| 803 'shell/renderer/test_runner/helper/layout_test_helper_mac.mm', | 804 'shell/renderer/test_runner/helper/layout_test_helper_mac.mm', |
| 804 'shell/renderer/test_runner/helper/layout_test_helper_win.cc', | 805 'shell/renderer/test_runner/helper/layout_test_helper_win.cc', |
| 805 ], | 806 ], |
| 806 'conditions': [ | 807 'conditions': [ |
| 807 ['OS=="mac"', { | 808 ['OS=="mac"', { |
| 808 'link_settings': { | 809 'link_settings': { |
| 809 'libraries': [ | 810 'libraries': [ |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1166 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1167 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
| 1167 '--destination_dir', '<(dest_dir)', | 1168 '--destination_dir', '<(dest_dir)', |
| 1168 ], | 1169 ], |
| 1169 }, | 1170 }, |
| 1170 ], | 1171 ], |
| 1171 }, | 1172 }, |
| 1172 ], | 1173 ], |
| 1173 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1174 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
| 1174 ] | 1175 ] |
| 1175 } | 1176 } |
| OLD | NEW |