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

Side by Side Diff: cloud_print/cloud_print.gyp

Issue 14107007: Moved Google Update and install related code to cloud_print/common (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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/common/win/cloud_print_utils.h » ('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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 7
8 'variables': { 8 'variables': {
9 'version_py_path': '../tools/build/version.py', 9 'version_py_path': '../tools/build/version.py',
10 'version_path': 'VERSION', 10 'version_path': 'VERSION',
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 }], 98 }],
99 ], 99 ],
100 'msvs_settings': { 100 'msvs_settings': {
101 'VCLinkerTool': { 101 'VCLinkerTool': {
102 'AdditionalDependencies': [ 102 'AdditionalDependencies': [
103 'secur32.lib', 103 'secur32.lib',
104 ], 104 ],
105 }, 105 },
106 }, 106 },
107 }, 107 },
108 {
109 'target_name': 'cloud_print_install_lib',
110 'type': 'static_library',
111 'dependencies': [
112 '<(DEPTH)/base/base.gyp:base',
113 ],
114 'sources': [
115 '<(DEPTH)/cloud_print/common/win/install_utils.cc',
116 '<(DEPTH)/cloud_print/common/win/install_utils.h',
117 ],
118 },
108 ], 119 ],
109 } 120 }
OLDNEW
« no previous file with comments | « no previous file | cloud_print/common/win/cloud_print_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698