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

Side by Side Diff: chrome/chrome_installer_util.gypi

Issue 3148001: Reworked Avi's patch for master prefs implemented on mac to work with new fir... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 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/browser/first_run/first_run_win.cc ('k') | no next file » | 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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 'installer/util/master_preferences_dummy.cc', 120 'installer/util/master_preferences_dummy.cc',
121 ], 121 ],
122 'configurations': { 122 'configurations': {
123 'Common_Base': { 123 'Common_Base': {
124 'msvs_target_platform': 'x64', 124 'msvs_target_platform': 'x64',
125 }, 125 },
126 }, 126 },
127 }, 127 },
128 ], 128 ],
129 }], 129 }],
130 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { 130 ['OS!="win"', {
131 'targets': [ 131 'targets': [
132 { 132 {
133 'target_name': 'installer_util', 133 'target_name': 'installer_util',
134 'type': '<(library)', 134 'type': '<(library)',
135 'dependencies': [ 135 'dependencies': [
136 'common_constants', 136 'common_constants',
137 'chrome_resources', 137 'chrome_resources',
138 'chrome_strings', 138 'chrome_strings',
139 ], 139 ],
140 'sources': [ 140 'sources': [
141 'installer/util/master_preferences.cc', 141 'installer/util/master_preferences.cc',
142 'installer/util/master_preferences.h', 142 'installer/util/master_preferences.h',
143 'installer/util/master_preferences_constants.cc', 143 'installer/util/master_preferences_constants.cc',
144 'installer/util/master_preferences_constants.h', 144 'installer/util/master_preferences_constants.h',
145 'installer/util/version.cc', 145 'installer/util/version.cc',
146 'installer/util/version.h', 146 'installer/util/version.h',
147 ], 147 ],
148 'include_dirs': [ 148 'include_dirs': [
149 '<(DEPTH)', 149 '<(DEPTH)',
150 ], 150 ],
151 } 151 }
152 ], 152 ],
153 }], 153 }],
154 ['OS=="mac"', {
155 'targets': [
156 {
157 'target_name': 'installer_util',
158 'type': '<(library)',
159 'dependencies': [
160 '../base/base.gyp:base',
161 ],
162 'sources': [
163 'installer/util/version.cc',
164 'installer/util/version.h',
165 ],
166 }
167 ],
168 }],
169 ], 154 ],
170 } 155 }
171 156
172 # Local Variables: 157 # Local Variables:
173 # tab-width:2 158 # tab-width:2
174 # indent-tabs-mode:nil 159 # indent-tabs-mode:nil
175 # End: 160 # End:
176 # vim: set expandtab tabstop=2 shiftwidth=2: 161 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « chrome/browser/first_run/first_run_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698