Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(429)

Side by Side Diff: cloud_print/service/service.gyp

Issue 10692093: Use Chrome version for cloud print binaries. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | cloud_print/service/win/cloud_print_service.rc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | cloud_print/service/win/cloud_print_service.rc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698