diff options
author | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-15 00:53:54 +0000 |
---|---|---|
committer | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-15 00:53:54 +0000 |
commit | 1241fe9067adf91ba3ef055bb5011c3e25250df7 (patch) | |
tree | 9cb27d2134b728313cc85fe6c38bca9436d8f0c1 /third_party | |
parent | bc9a5157e6843721680e49185dc86ac5885a0c11 (diff) | |
download | chromium_src-1241fe9067adf91ba3ef055bb5011c3e25250df7.zip chromium_src-1241fe9067adf91ba3ef055bb5011c3e25250df7.tar.gz chromium_src-1241fe9067adf91ba3ef055bb5011c3e25250df7.tar.bz2 |
Move dmg_fp in scons build to compile from
base/third_party/dmg_fp and compile it into base_lib.
Review URL: http://codereview.chromium.org/10769
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5521 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/dmg_fp/dmg_fp.scons | 51 | ||||
-rw-r--r-- | third_party/dmg_fp/dmg_fp.vsprops | 12 | ||||
-rw-r--r-- | third_party/dmg_fp/using_dmg_fp.scons | 11 |
3 files changed, 0 insertions, 74 deletions
diff --git a/third_party/dmg_fp/dmg_fp.scons b/third_party/dmg_fp/dmg_fp.scons deleted file mode 100644 index 8ac9cba..0000000 --- a/third_party/dmg_fp/dmg_fp.scons +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright (c) 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() - -# Do *NOT* define USE_LOCALE here. We want these functions to be -# locale-independent, for example to use in parsers or serializers. -env.Append( - # TODO(sgk): Review this when we want to support more architectures. - CPPDEFINES = [ - 'IEEE_8087', - ], -) - -if env['PLATFORM'] == 'win32': - env.Append( - CCFLAGS = [ - '/TP', - - '/wd4018', - '/wd4102', - '/wd4244', - '/wd4503', - '/wd4554', - '/wd4800', - '/wd4819', - ], - ) - -if env['PLATFORM'] in ('darwin', 'posix'): - # As usual with third party code, it generates lots of warnings. - # Disable only what's necessary. - env.Append( - CCFLAGS = [ - '-Wno-uninitialized', - '-Wno-parentheses', - '-Wno-sign-compare', - '-Wno-unused-label', - '-Wno-write-strings', - ] - ) - -input_files = [ - 'dtoa.cc', - 'g_fmt.cc', -] - -env.ChromeStaticLibrary('dmg_fp', input_files) diff --git a/third_party/dmg_fp/dmg_fp.vsprops b/third_party/dmg_fp/dmg_fp.vsprops deleted file mode 100644 index 78e061f..0000000 --- a/third_party/dmg_fp/dmg_fp.vsprops +++ /dev/null @@ -1,12 +0,0 @@ -<?xml version="1.0" encoding="Windows-1252"?> -<VisualStudioPropertySheet - ProjectType="Visual C++" - Version="8.00" - Name="sqlite" - > - <Tool - Name="VCCLCompilerTool" - PreprocessorDefinitions="IEEE_8087" - DisableSpecificWarnings="4018;4102;4244;4554"
- /> -</VisualStudioPropertySheet> diff --git a/third_party/dmg_fp/using_dmg_fp.scons b/third_party/dmg_fp/using_dmg_fp.scons deleted file mode 100644 index 8dad8dd..0000000 --- a/third_party/dmg_fp/using_dmg_fp.scons +++ /dev/null @@ -1,11 +0,0 @@ -# Copyright (c) 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.Append( - LIBS = [ - 'dmg_fp', - ], -) |