| 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 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 ], | 534 ], |
| 535 'configurations': { | 535 'configurations': { |
| 536 'Debug_Base': { | 536 'Debug_Base': { |
| 537 'msvs_settings': { | 537 'msvs_settings': { |
| 538 'VCLinkerTool': { | 538 'VCLinkerTool': { |
| 539 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', | 539 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', |
| 540 }, | 540 }, |
| 541 }, | 541 }, |
| 542 }, | 542 }, |
| 543 }, | 543 }, |
| 544 'msvs_large_pdb': 1, | |
| 545 }], # OS=="win" | 544 }], # OS=="win" |
| 546 ['OS == "win"', { | 545 ['OS == "win"', { |
| 547 'dependencies': [ | 546 'dependencies': [ |
| 548 '../sandbox/sandbox.gyp:sandbox', | 547 '../sandbox/sandbox.gyp:sandbox', |
| 549 ], | 548 ], |
| 550 }], # OS=="win" | 549 }], # OS=="win" |
| 551 ['OS=="mac"', { | 550 ['OS=="mac"', { |
| 552 'product_name': '<(content_shell_product_name)', | 551 'product_name': '<(content_shell_product_name)', |
| 553 'dependencies!': [ | 552 'dependencies!': [ |
| 554 'content_shell_lib', | 553 'content_shell_lib', |
| (...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1092 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1091 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
| 1093 '--destination_dir', '<(dest_dir)', | 1092 '--destination_dir', '<(dest_dir)', |
| 1094 ], | 1093 ], |
| 1095 }, | 1094 }, |
| 1096 ], | 1095 ], |
| 1097 }, | 1096 }, |
| 1098 ], | 1097 ], |
| 1099 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1098 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
| 1100 ] | 1099 ] |
| 1101 } | 1100 } |
| OLD | NEW |