Index: tools/goopdump/build.scons |
diff --git a/tools/goopdump/build.scons b/tools/goopdump/build.scons |
deleted file mode 100644 |
index 7ce4e74f4258e923a03b0a14c03a76efd10aa03d..0000000000000000000000000000000000000000 |
--- a/tools/goopdump/build.scons |
+++ /dev/null |
@@ -1,139 +0,0 @@ |
-#!/usr/bin/python2.4 |
-# |
-# Copyright 2009-2010 Google Inc. |
-# |
-# Licensed under the Apache License, Version 2.0 (the "License"); |
-# you may not use this file except in compliance with the License. |
-# You may obtain a copy of the License at |
-# |
-# http://www.apache.org/licenses/LICENSE-2.0 |
-# |
-# Unless required by applicable law or agreed to in writing, software |
-# distributed under the License is distributed on an "AS IS" BASIS, |
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
-# See the License for the specific language governing permissions and |
-# limitations under the License. |
-# ======================================================================== |
- |
-# Builds goopdump.exe which is a utility for dumping config info for |
-# googleupdate. |
- |
- |
-Import('env') |
- |
-# |
-# Build Goopdump.lib |
-# |
-lib_env = env.Clone() |
- |
-target_name = 'goopdump.lib' |
- |
-lib_inputs = [ |
- 'data_dumper.cc', |
- 'data_dumper_app_manager.cc', |
- 'data_dumper_goopdate.cc', |
- 'data_dumper_network.cc', |
- 'data_dumper_oneclick.cc', |
- 'data_dumper_osdata.cc', |
- 'dump_log.cc', |
- 'goopdump.cc', |
- 'goopdump_cmd_line_parser.cc', |
- 'process_commandline.cc', |
- 'process_monitor.cc', |
- ] |
-if env.Bit('use_precompiled_headers'): |
- lib_inputs += lib_env.EnablePrecompile(target_name) |
- |
-lib_env.ComponentLibrary( |
- lib_name=target_name, |
- source=lib_inputs |
-) |
- |
- |
-# |
-# Build Goopdump.exe |
-# |
-exe_env = env.Clone() |
- |
-omaha_version_info = exe_env['omaha_versions_info'][0] |
- |
-exe_env.Append( |
- RCFLAGS = [ |
- '/DVERSION_MAJOR=%d' % omaha_version_info.version_major, |
- '/DVERSION_MINOR=%d' % omaha_version_info.version_minor, |
- '/DVERSION_BUILD=%d' % omaha_version_info.version_build, |
- '/DVERSION_PATCH=%d' % omaha_version_info.version_patch, |
- '/DVERSION_NUMBER_STRING=\\"%s\\"' % ( |
- omaha_version_info.GetVersionString()), |
- '/DLANGAUGE_STRING=\\"en\\"', |
- ], |
- |
- LIBS = [ |
- 'delayimp.lib', |
- 'kernel32.lib', |
- 'pdh.lib', |
- '$LIB_DIR/common.lib', |
- '$LIB_DIR/goopdate_dll.lib', |
- '$LIB_DIR/logging.lib', |
- '$LIB_DIR/net.lib', |
- '$LIB_DIR/statsreport.lib', |
- '$LIB_DIR/goopdump.lib', |
- '$LIB_DIR/worker.lib', |
- ('atls.lib', 'atlsd.lib')[exe_env.Bit('debug')], |
- ('libcmt.lib', 'libcmtd.lib')[exe_env.Bit('debug')], |
- ('libcpmt.lib', 'libcpmtd.lib')[exe_env.Bit('debug')], |
- 'advapi32.lib', |
- 'comctl32.lib', |
- 'crypt32.lib', |
- 'delayimp.lib', |
- 'Iphlpapi.lib', |
- 'msi.lib', |
- 'mstask.lib', |
- 'netapi32.lib', |
- 'ole32.lib', |
- 'oleaut32.lib', |
- 'psapi.lib', |
- 'rasapi32.lib', |
- 'secur32.lib', |
- 'shell32.lib', |
- 'shlwapi.lib', |
- 'user32.lib', |
- 'version.lib', |
- 'urlmon.lib', |
- 'userenv.lib', |
- 'uuid.lib', |
- 'wininet.lib', |
- 'wintrust.lib', |
- 'wtsapi32.lib', |
- ], |
- |
- LINKFLAGS = [ |
- '/DELAYLOAD:ole32.dll', |
- '/DELAYLOAD:oleaut32.dll', |
- '/DELAYLOAD:psapi.dll', |
- '/DELAYLOAD:rasapi32.dll', |
- '/DELAYLOAD:shell32.dll', |
- '/DELAYLOAD:shlwapi.dll', |
- '/DELAYLOAD:userenv.dll', |
- '/DELAYLOAD:version.dll', |
- '/DELAYLOAD:wtsapi32.dll', |
- ], |
-) |
- |
-exe_env.FilterOut(LINKFLAGS = ['/SUBSYSTEM:WINDOWS']) |
-exe_env['LINKFLAGS'] += ['/SUBSYSTEM:CONSOLE'] |
- |
-target_name = 'goopdump' |
- |
-exe_inputs = [ |
- 'goopdump_main.cc', |
- exe_env.RES('resource.rc'), |
- ] |
-if env.Bit('use_precompiled_headers'): |
- exe_inputs += exe_env.EnablePrecompile(target_name) |
- |
-exe_env.ComponentTestProgram( |
- prog_name=target_name, |
- source=exe_inputs, |
- COMPONENT_TEST_RUNNABLE=False, |
-) |