diff options
author | gspencer@google.com <gspencer@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-02 19:00:07 +0000 |
---|---|---|
committer | gspencer@google.com <gspencer@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-02 19:00:07 +0000 |
commit | 7937c84250348ba25af03cfdc6d8d9d0a7098128 (patch) | |
tree | 9bf54cfa70cde313d00040d252c3105a2ecfb293 /o3d/ipc | |
parent | 83aec62c726e56e6c5c0499c872aab03ff031a3c (diff) | |
download | chromium_src-7937c84250348ba25af03cfdc6d8d9d0a7098128.zip chromium_src-7937c84250348ba25af03cfdc6d8d9d0a7098128.tar.gz chromium_src-7937c84250348ba25af03cfdc6d8d9d0a7098128.tar.bz2 |
This change kills the SCons build, since we have switched completely
over to GYP. It also copies the contents of DEPS_gyp to DEPS, and
removes the DEPS_gyp file.
Review URL: http://codereview.chromium.org/354011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30729 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/ipc')
-rw-r--r-- | o3d/ipc/build.scons | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/o3d/ipc/build.scons b/o3d/ipc/build.scons deleted file mode 100644 index 2474cc0..0000000 --- a/o3d/ipc/build.scons +++ /dev/null @@ -1,33 +0,0 @@ -# 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__ = """ -Master configuration for building ipc component. -""" - -Import('env') - -inputs = [ - 'ipc_channel_proxy', - 'ipc_logging', - 'ipc_message', - 'ipc_message_utils', - 'ipc_switches', - 'ipc_sync_channel', - 'ipc_sync_message', -] - -if env.Bit('windows'): - inputs += [ - 'ipc_channel_win', - ] - -if env.Bit('mac') or env.Bit('linux'): - inputs += [ - 'file_descriptor_set_posix', - 'ipc_channel_posix', - ] - -input_files = env.MakeObjects(inputs, '$CHROME_SRC_DIR/ipc', 'cc') -env.ComponentLibrary('o3d_ipc', input_files) |