| 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 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 ], | 544 ], |
| 545 'configurations': { | 545 'configurations': { |
| 546 'Debug_Base': { | 546 'Debug_Base': { |
| 547 'msvs_settings': { | 547 'msvs_settings': { |
| 548 'VCLinkerTool': { | 548 'VCLinkerTool': { |
| 549 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', | 549 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', |
| 550 }, | 550 }, |
| 551 }, | 551 }, |
| 552 }, | 552 }, |
| 553 }, | 553 }, |
| 554 'msvs_large_pdb': 1, | |
| 555 }], # OS=="win" | 554 }], # OS=="win" |
| 556 ['OS == "win"', { | 555 ['OS == "win"', { |
| 557 'dependencies': [ | 556 'dependencies': [ |
| 558 '../sandbox/sandbox.gyp:sandbox', | 557 '../sandbox/sandbox.gyp:sandbox', |
| 559 ], | 558 ], |
| 560 }], # OS=="win" | 559 }], # OS=="win" |
| 561 ['OS=="mac"', { | 560 ['OS=="mac"', { |
| 562 'product_name': '<(content_shell_product_name)', | 561 'product_name': '<(content_shell_product_name)', |
| 563 'dependencies!': [ | 562 'dependencies!': [ |
| 564 'content_shell_lib', | 563 'content_shell_lib', |
| (...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1103 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1102 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
| 1104 '--destination_dir', '<(dest_dir)', | 1103 '--destination_dir', '<(dest_dir)', |
| 1105 ], | 1104 ], |
| 1106 }, | 1105 }, |
| 1107 ], | 1106 ], |
| 1108 }, | 1107 }, |
| 1109 ], | 1108 ], |
| 1110 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1109 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
| 1111 ] | 1110 ] |
| 1112 } | 1111 } |
| OLD | NEW |