| 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 }, | 8 }, |
| 9 'include_dirs': [ | 9 'include_dirs': [ |
| 10 '<(DEPTH)', | 10 '<(DEPTH)', |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 ['OS=="win"', { | 31 ['OS=="win"', { |
| 32 'dependencies': [ | 32 'dependencies': [ |
| 33 '<(DEPTH)/chrome/chrome.gyp:launcher_support', | 33 '<(DEPTH)/chrome/chrome.gyp:launcher_support', |
| 34 ], | 34 ], |
| 35 }], | 35 }], |
| 36 ], | 36 ], |
| 37 }, | 37 }, |
| 38 { | 38 { |
| 39 'target_name': 'cloud_print_service', | 39 'target_name': 'cloud_print_service', |
| 40 'type': 'executable', | 40 'type': 'executable', |
| 41 'include_dirs': [ |
| 42 # To allow including "version.h" |
| 43 '<(SHARED_INTERMEDIATE_DIR)', |
| 44 ], |
| 41 'sources': [ | 45 'sources': [ |
| 42 'win/cloud_print_service.cc', | 46 'win/cloud_print_service.cc', |
| 43 'win/cloud_print_service.h', | 47 'win/cloud_print_service.h', |
| 44 'win/cloud_print_service.rc', | 48 'win/cloud_print_service.rc', |
| 45 'win/resource.h', | 49 'win/resource.h', |
| 46 ], | 50 ], |
| 47 'dependencies': [ | 51 'dependencies': [ |
| 48 'cloud_print_service_lib', | 52 'cloud_print_service_lib', |
| 49 ], | 53 ], |
| 54 'conditions': [ |
| 55 ['OS=="win"', { |
| 56 'dependencies': [ |
| 57 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', |
| 58 ], |
| 59 }], |
| 60 ], |
| 50 'msvs_settings': { | 61 'msvs_settings': { |
| 51 'VCLinkerTool': { | 62 'VCLinkerTool': { |
| 52 'SubSystem': '1', # Set /SUBSYSTEM:CONSOLE | 63 'SubSystem': '1', # Set /SUBSYSTEM:CONSOLE |
| 53 'UACExecutionLevel': '2', # /level='requireAdministrator' | 64 'UACExecutionLevel': '2', # /level='requireAdministrator' |
| 54 }, | 65 }, |
| 55 }, | 66 }, |
| 56 }, | 67 }, |
| 57 ], | 68 ], |
| 58 } | 69 } |
| OLD | NEW |