| 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 'target_defaults': { | 5 'target_defaults': { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 'enable_wexit_time_destructors': 1, | 8 'enable_wexit_time_destructors': 1, |
| 9 }, | 9 }, |
| 10 'include_dirs': [ | 10 'include_dirs': [ |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 }, | 81 }, |
| 82 }, | 82 }, |
| 83 'direct_dependent_settings': { | 83 'direct_dependent_settings': { |
| 84 'msvs_settings': { | 84 'msvs_settings': { |
| 85 'VCCLCompilerTool': { | 85 'VCCLCompilerTool': { |
| 86 'AdditionalOptions': ['-Wno-writable-strings'], | 86 'AdditionalOptions': ['-Wno-writable-strings'], |
| 87 }, | 87 }, |
| 88 }, | 88 }, |
| 89 }, | 89 }, |
| 90 }], | 90 }], |
| 91 ['enable_printing!=0', { | 91 ['printing_mode!=0', { |
| 92 'dependencies': [ | 92 'dependencies': [ |
| 93 '<(DEPTH)/printing/printing.gyp:printing', | 93 '<(DEPTH)/printing/printing.gyp:printing', |
| 94 ], | 94 ], |
| 95 }], | 95 }], |
| 96 ], | 96 ], |
| 97 'sources': [ | 97 'sources': [ |
| 98 '<(DEPTH)/content/public/common/content_switches.h', | 98 '<(DEPTH)/content/public/common/content_switches.h', |
| 99 '<(DEPTH)/content/public/common/content_switches.cc', | 99 '<(DEPTH)/content/public/common/content_switches.cc', |
| 100 '<(DEPTH)/cloud_print/common/win/cloud_print_utils.cc', | 100 '<(DEPTH)/cloud_print/common/win/cloud_print_utils.cc', |
| 101 '<(DEPTH)/cloud_print/common/win/cloud_print_utils.h', | 101 '<(DEPTH)/cloud_print/common/win/cloud_print_utils.h', |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 201 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 202 'UACExecutionLevel': '2', # /level='requireAdministrator' | 202 'UACExecutionLevel': '2', # /level='requireAdministrator' |
| 203 'AdditionalDependencies': [ | 203 'AdditionalDependencies': [ |
| 204 'secur32.lib', | 204 'secur32.lib', |
| 205 ], | 205 ], |
| 206 }, | 206 }, |
| 207 }, | 207 }, |
| 208 }, | 208 }, |
| 209 ], | 209 ], |
| 210 } | 210 } |
| OLD | NEW |