0

Only require Google Update on Windows.

Review URL: http://codereview.chromium.org/20293


git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9663 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
evan@chromium.org
2009-02-12 17:13:09 +00:00
parent baee2b8975
commit e7736d75f1

@ -8,11 +8,13 @@ Settings for other components using Google Update.
Import("env")
env.Append(
CPPPATH = [
'$GOOGLE_UPDATE_DIR',
],
LIBS = [
'google_update',
],
)
# Google Update only works on Windows.
if env.Bit('windows'):
env.Append(
CPPPATH = [
'$GOOGLE_UPDATE_DIR',
],
LIBS = [
'google_update',
],
)