OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 # IMPORTANT: | 5 # IMPORTANT: |
6 # Please don't directly include this file if you are building via gyp_chromium, | 6 # Please don't directly include this file if you are building via gyp_chromium, |
7 # since gyp_chromium is automatically forcing its inclusion. | 7 # since gyp_chromium is automatically forcing its inclusion. |
8 { | 8 { |
9 'variables': { | 9 'variables': { |
10 # .gyp files should set chromium_code to 1 if they build Chromium-specific | 10 # .gyp files should set chromium_code to 1 if they build Chromium-specific |
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
435 'VCLinkerTool': { | 435 'VCLinkerTool': { |
436 'EnableCOMDATFolding': '1', | 436 'EnableCOMDATFolding': '1', |
437 'LinkIncremental': '1', | 437 'LinkIncremental': '1', |
438 }, | 438 }, |
439 }, | 439 }, |
440 }, | 440 }, |
441 'Release - no tcmalloc': { | 441 'Release - no tcmalloc': { |
442 'inherit_from': ['Release'], | 442 'inherit_from': ['Release'], |
443 'defines': ['NO_TCMALLOC'], | 443 'defines': ['NO_TCMALLOC'], |
444 }, | 444 }, |
| 445 'Debug_x64': { |
| 446 'inherit_from': ['Debug'], |
| 447 'msvs_configuration_platform': 'x64', |
| 448 }, |
| 449 'Release_x64': { |
| 450 'inherit_from': ['Release'], |
| 451 'msvs_configuration_platform': 'x64', |
| 452 }, |
| 453 'Purify_x64': { |
| 454 'inherit_from': ['Purify'], |
| 455 'msvs_configuration_platform': 'x64', |
| 456 }, |
| 457 'Release - no tcmalloc_x64': { |
| 458 'inherit_from': ['Release - no tcmalloc'], |
| 459 'msvs_configuration_platform': 'x64', |
| 460 }, |
445 }], | 461 }], |
446 ], | 462 ], |
447 }, | 463 }, |
448 }, | 464 }, |
449 'conditions': [ | 465 'conditions': [ |
450 ['OS=="linux"', { | 466 ['OS=="linux"', { |
451 'target_defaults': { | 467 'target_defaults': { |
452 # Enable -Werror by default, but put it in a variable so it can | 468 # Enable -Werror by default, but put it in a variable so it can |
453 # be disabled in ~/.gyp/include.gypi on the valgrind builders. | 469 # be disabled in ~/.gyp/include.gypi on the valgrind builders. |
454 'variables': { | 470 'variables': { |
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
904 # and therefore SYMROOT, needs to be set at the project level. | 920 # and therefore SYMROOT, needs to be set at the project level. |
905 'SYMROOT': '<(DEPTH)/xcodebuild', | 921 'SYMROOT': '<(DEPTH)/xcodebuild', |
906 }, | 922 }, |
907 } | 923 } |
908 | 924 |
909 # Local Variables: | 925 # Local Variables: |
910 # tab-width:2 | 926 # tab-width:2 |
911 # indent-tabs-mode:nil | 927 # indent-tabs-mode:nil |
912 # End: | 928 # End: |
913 # vim: set expandtab tabstop=2 shiftwidth=2: | 929 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |