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

Side by Side Diff: chrome/chrome_installer_util.gypi

Issue 7051014: Globally replace <(library) with static_library (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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 | « chrome/chrome_common.gypi ('k') | chrome/chrome_renderer.gypi » ('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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 { 5 {
6 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'installer_util_target': 0, 8 'installer_util_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 '<(DEPTH)', 80 '<(DEPTH)',
81 ], 81 ],
82 }], 82 }],
83 ], 83 ],
84 }, 84 },
85 'conditions': [ 85 'conditions': [
86 ['OS=="win"', { 86 ['OS=="win"', {
87 'targets': [ 87 'targets': [
88 { 88 {
89 'target_name': 'installer_util', 89 'target_name': 'installer_util',
90 'type': '<(library)', 90 'type': 'static_library',
91 'msvs_guid': 'EFBB1436-A63F-4CD8-9E99-B89226E782EC', 91 'msvs_guid': 'EFBB1436-A63F-4CD8-9E99-B89226E782EC',
92 'variables': { 92 'variables': {
93 'installer_util_target': 1, 93 'installer_util_target': 1,
94 }, 94 },
95 'dependencies': [ 95 'dependencies': [
96 'installer_util_strings', 96 'installer_util_strings',
97 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', 97 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
98 'common_constants', 98 'common_constants',
99 'chrome_resources', 99 'chrome_resources',
100 'chrome_strings', 100 'chrome_strings',
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 'installer/util/product.cc', 134 'installer/util/product.cc',
135 'installer/util/product_operations.h', 135 'installer/util/product_operations.h',
136 'installer/util/self_cleaning_temp_dir.cc', 136 'installer/util/self_cleaning_temp_dir.cc',
137 'installer/util/self_cleaning_temp_dir.h', 137 'installer/util/self_cleaning_temp_dir.h',
138 'installer/util/shell_util.cc', 138 'installer/util/shell_util.cc',
139 'installer/util/shell_util.h', 139 'installer/util/shell_util.h',
140 ], 140 ],
141 }, 141 },
142 { 142 {
143 'target_name': 'installer_util_nacl_win64', 143 'target_name': 'installer_util_nacl_win64',
144 'type': '<(library)', 144 'type': 'static_library',
145 'msvs_guid': '91016F29-C324-4236-8AA0-032765E71582', 145 'msvs_guid': '91016F29-C324-4236-8AA0-032765E71582',
146 'variables': { 146 'variables': {
147 'installer_util_target': 1, 147 'installer_util_target': 1,
148 }, 148 },
149 'dependencies': [ 149 'dependencies': [
150 'installer_util_strings', 150 'installer_util_strings',
151 ], 151 ],
152 'include_dirs': [ 152 'include_dirs': [
153 '<(SHARED_INTERMEDIATE_DIR)', 153 '<(SHARED_INTERMEDIATE_DIR)',
154 ], 154 ],
155 'sources': [ 155 'sources': [
156 'installer/util/google_chrome_distribution_dummy.cc', 156 'installer/util/google_chrome_distribution_dummy.cc',
157 'installer/util/master_preferences.h', 157 'installer/util/master_preferences.h',
158 'installer/util/master_preferences_dummy.cc', 158 'installer/util/master_preferences_dummy.cc',
159 ], 159 ],
160 'configurations': { 160 'configurations': {
161 'Common_Base': { 161 'Common_Base': {
162 'msvs_target_platform': 'x64', 162 'msvs_target_platform': 'x64',
163 }, 163 },
164 }, 164 },
165 }, 165 },
166 ], 166 ],
167 }], 167 }],
168 ['OS!="win"', { 168 ['OS!="win"', {
169 'targets': [ 169 'targets': [
170 { 170 {
171 'target_name': 'installer_util', 171 'target_name': 'installer_util',
172 'type': '<(library)', 172 'type': 'static_library',
173 'dependencies': [ 173 'dependencies': [
174 'common_constants', 174 'common_constants',
175 'chrome_resources', 175 'chrome_resources',
176 'chrome_strings', 176 'chrome_strings',
177 ], 177 ],
178 'sources': [ 178 'sources': [
179 'installer/util/master_preferences.cc', 179 'installer/util/master_preferences.cc',
180 'installer/util/master_preferences.h', 180 'installer/util/master_preferences.h',
181 'installer/util/master_preferences_constants.cc', 181 'installer/util/master_preferences_constants.cc',
182 'installer/util/master_preferences_constants.h', 182 'installer/util/master_preferences_constants.h',
183 ], 183 ],
184 'include_dirs': [ 184 'include_dirs': [
185 '<(DEPTH)', 185 '<(DEPTH)',
186 ], 186 ],
187 } 187 }
188 ], 188 ],
189 }], 189 }],
190 ], 190 ],
191 } 191 }
192 192
193 # Local Variables: 193 # Local Variables:
194 # tab-width:2 194 # tab-width:2
195 # indent-tabs-mode:nil 195 # indent-tabs-mode:nil
196 # End: 196 # End:
197 # vim: set expandtab tabstop=2 shiftwidth=2: 197 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « chrome/chrome_common.gypi ('k') | chrome/chrome_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698