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