| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 'conditions': [ | 64 'conditions': [ |
| 65 ['OS=="win"', { | 65 ['OS=="win"', { |
| 66 'dependencies': [ | 66 'dependencies': [ |
| 67 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', | 67 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', |
| 68 '<(DEPTH)/chrome/chrome.gyp:launcher_support', | 68 '<(DEPTH)/chrome/chrome.gyp:launcher_support', |
| 69 '<(DEPTH)/chrome/common_constants.gyp:common_constants', | 69 '<(DEPTH)/chrome/common_constants.gyp:common_constants', |
| 70 ], | 70 ], |
| 71 }], | 71 }], |
| 72 ], | 72 ], |
| 73 'sources': [ | 73 'sources': [ |
| 74 '<(DEPTH)/content/public/common/content_switches.cc', |
| 74 '<(DEPTH)/content/public/common/content_switches.h', | 75 '<(DEPTH)/content/public/common/content_switches.h', |
| 75 '<(DEPTH)/content/public/common/content_switches.cc', | 76 '<(DEPTH)/content/public/common/content_switches_util.cc', |
| 77 '<(DEPTH)/content/public/common/content_switches_util.h', |
| 76 '<(DEPTH)/cloud_print/common/win/cloud_print_utils.cc', | 78 '<(DEPTH)/cloud_print/common/win/cloud_print_utils.cc', |
| 77 '<(DEPTH)/cloud_print/common/win/cloud_print_utils.h', | 79 '<(DEPTH)/cloud_print/common/win/cloud_print_utils.h', |
| 78 'service_constants.cc', | 80 'service_constants.cc', |
| 79 'service_constants.h', | 81 'service_constants.h', |
| 80 'service_state.cc', | 82 'service_state.cc', |
| 81 'service_state.h', | 83 'service_state.h', |
| 82 'service_switches.cc', | 84 'service_switches.cc', |
| 83 'service_switches.h', | 85 'service_switches.h', |
| 84 'win/chrome_launcher.cc', | 86 'win/chrome_launcher.cc', |
| 85 'win/chrome_launcher.h', | 87 'win/chrome_launcher.h', |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 171 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 170 'UACExecutionLevel': '2', # /level='requireAdministrator' | 172 'UACExecutionLevel': '2', # /level='requireAdministrator' |
| 171 'AdditionalDependencies': [ | 173 'AdditionalDependencies': [ |
| 172 'secur32.lib', | 174 'secur32.lib', |
| 173 ], | 175 ], |
| 174 }, | 176 }, |
| 175 }, | 177 }, |
| 176 }, | 178 }, |
| 177 ], | 179 ], |
| 178 } | 180 } |
| OLD | NEW |