| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 { | 50 { |
| 51 'target_name': 'cloud_print_service_lib', | 51 'target_name': 'cloud_print_service_lib', |
| 52 'type': 'static_library', | 52 'type': 'static_library', |
| 53 'dependencies': [ | 53 'dependencies': [ |
| 54 '<(DEPTH)/base/base.gyp:base', | 54 '<(DEPTH)/base/base.gyp:base', |
| 55 '<(DEPTH)/base/base.gyp:base_static', | 55 '<(DEPTH)/base/base.gyp:base_static', |
| 56 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 56 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
| 57 '<(DEPTH)/google_apis/google_apis.gyp:google_apis', | 57 '<(DEPTH)/google_apis/google_apis.gyp:google_apis', |
| 58 '<(DEPTH)/ipc/ipc.gyp:ipc', | 58 '<(DEPTH)/ipc/ipc.gyp:ipc', |
| 59 '<(DEPTH)/net/net.gyp:net', | 59 '<(DEPTH)/net/net.gyp:net', |
| 60 '<(DEPTH)/printing/printing.gyp:printing', | |
| 61 '<(DEPTH)/url/url.gyp:url_lib', | 60 '<(DEPTH)/url/url.gyp:url_lib', |
| 62 'service_resources', | 61 'service_resources', |
| 63 ], | 62 ], |
| 64 'conditions': [ | 63 'conditions': [ |
| 65 ['OS=="win"', { | 64 ['OS=="win"', { |
| 66 'dependencies': [ | 65 'dependencies': [ |
| 67 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', | 66 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', |
| 68 '<(DEPTH)/chrome/chrome.gyp:launcher_support', | 67 '<(DEPTH)/chrome/chrome.gyp:launcher_support', |
| 69 '<(DEPTH)/chrome/common_constants.gyp:common_constants', | 68 '<(DEPTH)/chrome/common_constants.gyp:common_constants', |
| 70 ], | 69 ], |
| 71 }], | 70 }], |
| 71 ['enable_printing!=0', { |
| 72 'dependencies': [ |
| 73 '<(DEPTH)/printing/printing.gyp:printing', |
| 74 ], |
| 75 }], |
| 72 ], | 76 ], |
| 73 'sources': [ | 77 'sources': [ |
| 74 '<(DEPTH)/content/public/common/content_switches.h', | 78 '<(DEPTH)/content/public/common/content_switches.h', |
| 75 '<(DEPTH)/content/public/common/content_switches.cc', | 79 '<(DEPTH)/content/public/common/content_switches.cc', |
| 76 '<(DEPTH)/cloud_print/common/win/cloud_print_utils.cc', | 80 '<(DEPTH)/cloud_print/common/win/cloud_print_utils.cc', |
| 77 '<(DEPTH)/cloud_print/common/win/cloud_print_utils.h', | 81 '<(DEPTH)/cloud_print/common/win/cloud_print_utils.h', |
| 78 'service_constants.cc', | 82 'service_constants.cc', |
| 79 'service_constants.h', | 83 'service_constants.h', |
| 80 'service_state.cc', | 84 'service_state.cc', |
| 81 'service_state.h', | 85 'service_state.h', |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 173 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 170 'UACExecutionLevel': '2', # /level='requireAdministrator' | 174 'UACExecutionLevel': '2', # /level='requireAdministrator' |
| 171 'AdditionalDependencies': [ | 175 'AdditionalDependencies': [ |
| 172 'secur32.lib', | 176 'secur32.lib', |
| 173 ], | 177 ], |
| 174 }, | 178 }, |
| 175 }, | 179 }, |
| 176 }, | 180 }, |
| 177 ], | 181 ], |
| 178 } | 182 } |
| OLD | NEW |