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

Side by Side Diff: chrome/installer/installer_util.gypi

Issue 1480002: GYP changes for FreeBSD and OpenBSD (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 'util/master_preferences_dummy.cc', 121 'util/master_preferences_dummy.cc',
122 ], 122 ],
123 'configurations': { 123 'configurations': {
124 'Common_Base': { 124 'Common_Base': {
125 'msvs_target_platform': 'x64', 125 'msvs_target_platform': 'x64',
126 }, 126 },
127 }, 127 },
128 }, 128 },
129 ], 129 ],
130 }], 130 }],
131 ['OS=="linux"', { 131 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', {
132 'targets': [ 132 'targets': [
133 { 133 {
134 'target_name': 'installer_util', 134 'target_name': 'installer_util',
135 'type': '<(library)', 135 'type': '<(library)',
136 'dependencies': [ 136 'dependencies': [
137 '../chrome.gyp:common_constants', 137 '../chrome.gyp:common_constants',
138 '../chrome.gyp:chrome_resources', 138 '../chrome.gyp:chrome_resources',
139 '../chrome.gyp:chrome_strings', 139 '../chrome.gyp:chrome_strings',
140 ], 140 ],
141 'sources': [ 141 'sources': [
142 'util/master_preferences.cc', 142 'util/master_preferences.cc',
143 'util/master_preferences.h', 143 'util/master_preferences.h',
144 'util/master_preferences_constants.cc', 144 'util/master_preferences_constants.cc',
145 'util/master_preferences_constants.h', 145 'util/master_preferences_constants.h',
146 ], 146 ],
147 'include_dirs': [ 147 'include_dirs': [
148 '<(DEPTH)', 148 '<(DEPTH)',
149 ], 149 ],
150 } 150 }
151 ], 151 ],
152 }], 152 }],
153 ], 153 ],
154 } 154 }
155 155
156 # Local Variables: 156 # Local Variables:
157 # tab-width:2 157 # tab-width:2
158 # indent-tabs-mode:nil 158 # indent-tabs-mode:nil
159 # End: 159 # End:
160 # vim: set expandtab tabstop=2 shiftwidth=2: 160 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698