aboutsummaryrefslogtreecommitdiffhomepage
path: root/platform_tools/chromeos
diff options
context:
space:
mode:
authorGravatar msarett <msarett@google.com>2015-03-27 12:17:00 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-03-27 12:17:00 -0700
commit255dcd11992ebe74eb54202c48cf5394d33a8ce6 (patch)
treecebd8cf7ae2a220fd24a2cc9b5fe605abef11ea0 /platform_tools/chromeos
parenta096d7a6d03662073f4cd46f7db5fe2cf5495c36 (diff)
WIP: Added support for giflib, updated jpeg and png
Diffstat (limited to 'platform_tools/chromeos')
-rw-r--r--platform_tools/chromeos/gyp/dependencies.gypi35
1 files changed, 0 insertions, 35 deletions
diff --git a/platform_tools/chromeos/gyp/dependencies.gypi b/platform_tools/chromeos/gyp/dependencies.gypi
deleted file mode 100644
index 38e3c5337f..0000000000
--- a/platform_tools/chromeos/gyp/dependencies.gypi
+++ /dev/null
@@ -1,35 +0,0 @@
-# This GYP file stores the dependencies necessary to build Skia on the Chrome OS
-# platform. The OS doesn't provide many stable libraries as part of the
-# distribution so we have to build a few of them ourselves.
-
-{
- 'variables': {
- 'skia_warnings_as_errors': 0,
- },
- 'targets': [
- {
- 'target_name': 'gif',
- 'type': 'static_library',
- 'sources': [
- '../third_party/externals/gif/dgif_lib.c',
- '../third_party/externals/gif/gifalloc.c',
- '../third_party/externals/gif/gif_err.c',
- ],
- 'include_dirs': [
- '../third_party/externals/gif',
- ],
- 'cflags': [
- '-Wno-format',
- '-DHAVE_CONFIG_H',
- ],
- 'cflags!': [
- '-Wall',
- ],
- 'direct_dependent_settings': {
- 'include_dirs': [
- '../third_party/externals/gif',
- ],
- }
- },
- ]
-}