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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 # 1 == /INCREMENTAL:NO | 350 # 1 == /INCREMENTAL:NO |
351 # 2 == /INCREMENTAL | 351 # 2 == /INCREMENTAL |
352 # Debug links incremental, Release does not. | 352 # Debug links incremental, Release does not. |
353 'Common': { | 353 'Common': { |
354 'abstract': 1, | 354 'abstract': 1, |
355 'msvs_configuration_attributes': { | 355 'msvs_configuration_attributes': { |
356 'OutputDirectory': '$(SolutionDir)$(ConfigurationName)', | 356 'OutputDirectory': '$(SolutionDir)$(ConfigurationName)', |
357 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', | 357 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', |
358 'CharacterSet': '1', | 358 'CharacterSet': '1', |
359 }, | 359 }, |
360 'conditions': [ | 360 'msvs_configuration_platform': 'Win32', |
361 ['OS=="win"', { | |
362 'configuration_platform': 'Win32', | |
363 }], | |
364 ], | |
365 }, | 361 }, |
366 'Debug': { | 362 'Debug': { |
367 'inherit_from': ['Common'], | 363 'inherit_from': ['Common'], |
368 'xcode_settings': { | 364 'xcode_settings': { |
369 'COPY_PHASE_STRIP': 'NO', | 365 'COPY_PHASE_STRIP': 'NO', |
370 'GCC_OPTIMIZATION_LEVEL': '<(mac_debug_optimization)', | 366 'GCC_OPTIMIZATION_LEVEL': '<(mac_debug_optimization)', |
371 'OTHER_CFLAGS': [ '<@(debug_extra_cflags)', ], | 367 'OTHER_CFLAGS': [ '<@(debug_extra_cflags)', ], |
372 }, | 368 }, |
373 'msvs_settings': { | 369 'msvs_settings': { |
374 'VCCLCompilerTool': { | 370 'VCCLCompilerTool': { |
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
908 # and therefore SYMROOT, needs to be set at the project level. | 904 # and therefore SYMROOT, needs to be set at the project level. |
909 'SYMROOT': '<(DEPTH)/xcodebuild', | 905 'SYMROOT': '<(DEPTH)/xcodebuild', |
910 }, | 906 }, |
911 } | 907 } |
912 | 908 |
913 # Local Variables: | 909 # Local Variables: |
914 # tab-width:2 | 910 # tab-width:2 |
915 # indent-tabs-mode:nil | 911 # indent-tabs-mode:nil |
916 # End: | 912 # End: |
917 # vim: set expandtab tabstop=2 shiftwidth=2: | 913 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |