diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-04 19:34:31 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-04 19:34:31 +0000 |
commit | 6fbfff588336c50ee0b86ed1164bad1c618be862 (patch) | |
tree | b4b355933d054a345e25c7a4ed9907d732a60214 /chrome/browser/debugger/debugger.scons | |
parent | 64cd3c333c5524da0cf4620035797500f6d42655 (diff) | |
download | chromium_src-6fbfff588336c50ee0b86ed1164bad1c618be862.zip chromium_src-6fbfff588336c50ee0b86ed1164bad1c618be862.tar.gz chromium_src-6fbfff588336c50ee0b86ed1164bad1c618be862.tar.bz2 |
More SCons renaming:
* Rename two SConscript files that needed fixing in response to
environment changes in the calling SConscript hierarchy:
chrome\test\interactive_ui\SConscript => interactive_ui_tests.scons
chrome\browser\debugger\SConscript => debugger.scons
* Add the google_update library to LIBS in the using_google_update.scons file.
Review URL: http://codereview.chromium.org/9309
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4629 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/debugger/debugger.scons')
-rw-r--r-- | chrome/browser/debugger/debugger.scons | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/chrome/browser/debugger/debugger.scons b/chrome/browser/debugger/debugger.scons new file mode 100644 index 0000000..cc2ca65 --- /dev/null +++ b/chrome/browser/debugger/debugger.scons @@ -0,0 +1,39 @@ +# 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') + +env = env.Clone() + +env.SConscript([ + '$BREAKPAD_DIR/using_breakpad.scons', + '$CHROME_DIR/third_party/wtl/using_wtl.scons', + '$ICU38_DIR/using_icu38.scons', + '$LIBPNG_DIR/using_libpng.scons', + '$LIBXML_DIR/using_libxml.scons', + '$NPAPI_DIR/using_npapi.scons', + '$SKIA_DIR/using_skia.scons', + '$ZLIB_DIR/using_zlib.scons', +], {'env':env}) + +env.Prepend( + CPPPATH = [ + '$CHROME_DIR/app/resources', + '$CHROME_DIR/app', + '$CHROME_SRC_DIR', + ], +) + +input_files = [ + 'debugger_contents.cc', + 'debugger_io_socket.cc', + 'debugger_node.cc', + 'debugger_shell.cc', + 'debugger_view.cc', + 'debugger_window.cc', + 'debugger_wrapper.cc', +] + +env.ChromeStaticLibrary('debugger', input_files) + |