| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 ], | 47 ], |
| 48 'includes': [ '../../build/grit_target.gypi' ], | 48 'includes': [ '../../build/grit_target.gypi' ], |
| 49 }, | 49 }, |
| 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)/build/temp_gyp/googleurl.gyp:googleurl', | |
| 58 '<(DEPTH)/google_apis/google_apis.gyp:google_apis', | 57 '<(DEPTH)/google_apis/google_apis.gyp:google_apis', |
| 59 '<(DEPTH)/ipc/ipc.gyp:ipc', | 58 '<(DEPTH)/ipc/ipc.gyp:ipc', |
| 60 '<(DEPTH)/net/net.gyp:net', | 59 '<(DEPTH)/net/net.gyp:net', |
| 61 '<(DEPTH)/printing/printing.gyp:printing', | 60 '<(DEPTH)/printing/printing.gyp:printing', |
| 61 '<(DEPTH)/url/url.gyp:url_lib', |
| 62 'service_resources', | 62 'service_resources', |
| 63 ], | 63 ], |
| 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 }], |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 169 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 170 'UACExecutionLevel': '2', # /level='requireAdministrator' | 170 'UACExecutionLevel': '2', # /level='requireAdministrator' |
| 171 'AdditionalDependencies': [ | 171 'AdditionalDependencies': [ |
| 172 'secur32.lib', | 172 'secur32.lib', |
| 173 ], | 173 ], |
| 174 }, | 174 }, |
| 175 }, | 175 }, |
| 176 }, | 176 }, |
| 177 ], | 177 ], |
| 178 } | 178 } |
| OLD | NEW |