diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-03 17:51:23 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-03 17:51:23 +0000 |
commit | 99d897c73c3ca446cb257b6099eee0ef9f47d781 (patch) | |
tree | c766e20cc2bfcce20aca460420956d2928cbb9ab /google_update | |
parent | 36cb8b8dcf9cdc539989d88b35e1e3f2472865c1 (diff) | |
download | chromium_src-99d897c73c3ca446cb257b6099eee0ef9f47d781.zip chromium_src-99d897c73c3ca446cb257b6099eee0ef9f47d781.tar.gz chromium_src-99d897c73c3ca446cb257b6099eee0ef9f47d781.tar.bz2 |
Convert browser.lib to the new naming:
* Move chrome/browser/SConscript => chrome/browser/browser.scons.
* Use using_*.scons files instead of by-hand settings.
* Add new using_*.scons files:
breakpad/using_breakpad.scons
chrome/third_party/hunspell/using_hunspell.scons
chrome/third_party/wtl/using_wtl.scons
google_update/using_google_update.scons
third_party/npapi/using_npapi.scons
* Delete some unused CPPPATH directories.
Review URL: http://codereview.chromium.org/9243
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4456 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'google_update')
-rw-r--r-- | google_update/using_google_update.scons | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/google_update/using_google_update.scons b/google_update/using_google_update.scons new file mode 100644 index 0000000..1469568 --- /dev/null +++ b/google_update/using_google_update.scons @@ -0,0 +1,15 @@ +# 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") + +env.Append( + CPPPATH = [ + '$GOOGLE_UPDATE_DIR', + ], +) |