summaryrefslogtreecommitdiffstats
path: root/third_party
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-03 17:51:23 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-03 17:51:23 +0000
commit99d897c73c3ca446cb257b6099eee0ef9f47d781 (patch)
treec766e20cc2bfcce20aca460420956d2928cbb9ab /third_party
parent36cb8b8dcf9cdc539989d88b35e1e3f2472865c1 (diff)
downloadchromium_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 'third_party')
-rw-r--r--third_party/npapi/using_npapi.scons15
1 files changed, 15 insertions, 0 deletions
diff --git a/third_party/npapi/using_npapi.scons b/third_party/npapi/using_npapi.scons
new file mode 100644
index 0000000..0e7fc73
--- /dev/null
+++ b/third_party/npapi/using_npapi.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 NPAPI.
+"""
+
+Import("env")
+
+env.Append(
+ CPPPATH = [
+ '$NPAPI_DIR',
+ ],
+)