| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 'xul_sdk_dir': '../third_party/xulrunner-sdk/<(OS)', | 8 'xul_sdk_dir': '../third_party/xulrunner-sdk/<(OS)', |
| 9 | 9 |
| 10 # Keep the archive builder happy. | 10 # Keep the archive builder happy. |
| (...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 576 # builds). | 576 # builds). |
| 577 'IgnoreAllDefaultLibraries': "true", | 577 'IgnoreAllDefaultLibraries': "true", |
| 578 }, | 578 }, |
| 579 'VCCLCompilerTool': { | 579 'VCCLCompilerTool': { |
| 580 # Requires standard library, so disable it. | 580 # Requires standard library, so disable it. |
| 581 'BufferSecurityCheck': "false", | 581 'BufferSecurityCheck': "false", |
| 582 }, | 582 }, |
| 583 }, | 583 }, |
| 584 'configurations': { | 584 'configurations': { |
| 585 # Bring back the standard library in debug buidls. | 585 # Bring back the standard library in debug buidls. |
| 586 'Debug': { | 586 'Debug_Base': { |
| 587 'msvs_settings': { | 587 'msvs_settings': { |
| 588 'VCLinkerTool': { | 588 'VCLinkerTool': { |
| 589 'IgnoreAllDefaultLibraries': "false", | 589 'IgnoreAllDefaultLibraries': "false", |
| 590 }, | 590 }, |
| 591 }, | 591 }, |
| 592 }, | 592 }, |
| 593 }, | 593 }, |
| 594 }, | 594 }, |
| 595 { | 595 { |
| 596 'target_name': 'chrome_frame_strings', | 596 'target_name': 'chrome_frame_strings', |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 783 ], | 783 ], |
| 784 } | 784 } |
| 785 | 785 |
| 786 # vim: shiftwidth=2:et:ai:tabstop=2 | 786 # vim: shiftwidth=2:et:ai:tabstop=2 |
| 787 | 787 |
| 788 # Local Variables: | 788 # Local Variables: |
| 789 # tab-width:2 | 789 # tab-width:2 |
| 790 # indent-tabs-mode:nil | 790 # indent-tabs-mode:nil |
| 791 # End: | 791 # End: |
| 792 # vim: set expandtab tabstop=2 shiftwidth=2: | 792 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |