summaryrefslogtreecommitdiffstats
path: root/third_party
diff options
context:
space:
mode:
authormaruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-03 17:37:43 +0000
committermaruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-03 17:37:43 +0000
commitf746b47c80a54384918bd43b0105a5a291cdc3fc (patch)
treeea9435fabee6540b29d9bdc7e51651a34b75aba5 /third_party
parentf022074ce2f3a4acef5322e67e01cd1c5632f4cb (diff)
downloadchromium_src-f746b47c80a54384918bd43b0105a5a291cdc3fc.zip
chromium_src-f746b47c80a54384918bd43b0105a5a291cdc3fc.tar.gz
chromium_src-f746b47c80a54384918bd43b0105a5a291cdc3fc.tar.bz2
Removing src/third_party/libvpx. WARNING: THIS WILL BREAK THE BUILD.
DO NOT SYNC TO THAT REVISION. Trying to workaround bug introduced in 64923. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64932 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r--third_party/libvpx/libvpx.gyp90
1 files changed, 0 insertions, 90 deletions
diff --git a/third_party/libvpx/libvpx.gyp b/third_party/libvpx/libvpx.gyp
deleted file mode 100644
index c521364..0000000
--- a/third_party/libvpx/libvpx.gyp
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright (c) 2010 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.
-
-{
- 'targets': [
- # libvpx_lib is not currently being used since we use libvpx inside
- # libavcodec. Keeping this just in case we need this later.
- {
- 'target_name': 'libvpx_lib',
- 'type': 'none',
- 'variables': {
- 'libvpx_lib': 'libvpx.a',
- },
- 'conditions': [
- # This section specifies the folder for looking for libvpx.a.
- #
- ['OS=="linux" and target_arch=="ia32"', {
- 'variables': {
- 'libvpx_path': 'lib/linux/ia32',
- },
- }],
- ['OS=="linux" and target_arch=="x64"', {
- 'variables': {
- 'libvpx_path': 'lib/linux/x64',
- },
- }],
- ['OS=="linux" and target_arch=="arm" and arm_neon==1', {
- 'variables': {
- 'libvpx_path': 'lib/linux/arm-neon',
- },
- }],
- ['OS=="linux" and target_arch=="arm" and arm_neon==0', {
- 'variables': {
- 'libvpx_path': 'lib/linux/arm',
- },
- }],
- ['OS=="win"', {
- 'variables': {
- 'libvpx_path': 'lib/win/ia32',
- },
- }],
- ['OS=="mac"', {
- 'variables': {
- 'libvpx_path': 'lib/mac/ia32',
- },
- }],
- ],
- 'actions': [
- {
- 'action_name': 'copy_lib',
- 'inputs': [
- '<(libvpx_path)/<(libvpx_lib)',
- ],
- 'outputs': [
- '<(SHARED_INTERMEDIATE_DIR)/<(libvpx_lib)',
- ],
- 'action': [
- 'cp',
- '<(libvpx_path)/<(libvpx_lib)',
- '<(SHARED_INTERMEDIATE_DIR)/<(libvpx_lib)',
- ],
- 'message': 'Copying libvpx.a into <(SHARED_INTERMEDIATE_DIR)',
- },
- ],
- 'all_dependent_settings': {
- 'link_settings': {
- 'libraries': [
- '<(SHARED_INTERMEDIATE_DIR)/<(libvpx_lib)',
- ],
- },
- },
- },
- {
- 'target_name': 'libvpx_include',
- 'type': 'none',
- 'direct_dependent_settings': {
- 'include_dirs': [
- 'include',
- ],
- },
- }
- ],
-}
-
-# Local Variables:
-# tab-width:2
-# indent-tabs-mode:nil
-# End:
-# vim: set expandtab tabstop=2 shiftwidth=2: