diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-01 22:05:12 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-01 22:05:12 +0000 |
commit | 0fad1f1a74408b939d1b09dcc2f9391544e7e692 (patch) | |
tree | c62164260c26f143c9ae43c32694142a725bc7eb /google_update | |
parent | a9b826af8ef183810c176b9ede4a2934f4678d50 (diff) | |
download | chromium_src-0fad1f1a74408b939d1b09dcc2f9391544e7e692.zip chromium_src-0fad1f1a74408b939d1b09dcc2f9391544e7e692.tar.gz chromium_src-0fad1f1a74408b939d1b09dcc2f9391544e7e692.tar.bz2 |
Remove the checked-in scons configuration files.
Review URL: http://codereview.chromium.org/53121
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12982 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'google_update')
-rw-r--r-- | google_update/SConscript | 42 | ||||
-rw-r--r-- | google_update/using_google_update.scons | 20 |
2 files changed, 0 insertions, 62 deletions
diff --git a/google_update/SConscript b/google_update/SConscript deleted file mode 100644 index 183e872..0000000 --- a/google_update/SConscript +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. - -Import('env') - -input_files = ChromeFileList([ - 'google_update_idl.idl', -]) - -# TODO(port): -if env.Bit('windows'): - # TODO(sgk): get from the input_files list. - env.TypeLibrary('google_update_idl') - -p = env.ChromeMSVSProject('ondemand_updates.vcproj', - dest=('$CHROME_SRC_DIR/google_update/' + - 'ondemand_updates.vcproj'), - guid='{4052059A-D72B-4183-B5C2-9D1B099E9E35}', - keyword='Win32Proj', - # TODO(sgk): when we can intuit the hierarchy - # from the built targets. - #buildtargets=TODO, - files=input_files, - relative_path_prefix='./', - tools=[ - 'VCPreBuildEventTool', - 'VCCustomBuildTool', - 'VCMIDLTool', - 'VCPostBuildEventTool', - ], - ConfigurationType='10') - -p.AddConfig('Debug|Win32', - InheritedPropertySheets=[ - '$(SolutionDir)../build/debug.vsprops', - ]) - -p.AddConfig('Release|Win32', - InheritedPropertySheets=[ - '$(SolutionDir)../build/release.vsprops', - ]) diff --git a/google_update/using_google_update.scons b/google_update/using_google_update.scons deleted file mode 100644 index c3d95cc..0000000 --- a/google_update/using_google_update.scons +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. - -__doc__ = """ -Settings for other components using Google Update. -""" - -Import("env") - -# Google Update only works on Windows. -if env.Bit('windows'): - env.Append( - CPPPATH = [ - '$GOOGLE_UPDATE_DIR', - ], - LIBS = [ - 'google_update', - ], - ) |