diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-13 08:26:32 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-13 08:26:32 +0000 |
commit | 1125d80a6488606d7c48abc44675100003c51e7c (patch) | |
tree | 65a9b061e1fd9addf7244bfe9bdacc18c4acfc76 /gfx/gfx.gyp | |
parent | 0d6cf24f8f5fc56e1205591be16445b99328b55b (diff) | |
download | chromium_src-1125d80a6488606d7c48abc44675100003c51e7c.zip chromium_src-1125d80a6488606d7c48abc44675100003c51e7c.tar.gz chromium_src-1125d80a6488606d7c48abc44675100003c51e7c.tar.bz2 |
Create a toplevel gfx/ dir and seed it with icon_util.
TBR=darin
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/915002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41528 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gfx/gfx.gyp')
-rw-r--r-- | gfx/gfx.gyp | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/gfx/gfx.gyp b/gfx/gfx.gyp new file mode 100644 index 0000000..e8f9272 --- /dev/null +++ b/gfx/gfx.gyp @@ -0,0 +1,72 @@ +# Copyright (c) 2009 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. + +{ + 'variables': { + 'chromium_code': 1, + }, + 'targets': [ + { + 'target_name': 'gfx_unittests', + 'type': 'executable', + 'msvs_guid': 'C8BD2821-EAE5-4AC6-A0E4-F82CAC2956CC', + 'dependencies': [ + 'gfx', + '../skia/skia.gyp:skia', + '../testing/gtest.gyp:gtest', + ], + 'sources': [ + 'run_all_unittests.cc', + ], + 'include_dirs': [ + '..', + ], + 'conditions': [ + ['OS=="win"', { + 'sources': [ + 'icon_util_unittest.cc', + ], + }], + ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { + 'dependencies': [ + '../build/linux/system.gyp:gtk', + ], + }], + ], + }, + { + 'target_name': 'gfx', + 'type': '<(library)', + 'msvs_guid': '13A8D36C-0467-4B4E-BAA3-FD69C45F076A', + 'dependencies': [ + '../base/base.gyp:base', + '../base/base.gyp:base_i18n', + '../skia/skia.gyp:skia', + '../third_party/icu/icu.gyp:icui18n', + '../third_party/icu/icu.gyp:icuuc', + '../third_party/libjpeg/libjpeg.gyp:libjpeg', + '../third_party/libpng/libpng.gyp:libpng', + '../third_party/sqlite/sqlite.gyp:sqlite', + '../third_party/zlib/zlib.gyp:zlib', + ], + 'sources': [ + 'empty.cc', + ], + 'conditions': [ + ['OS=="win"', { + 'sources': [ + 'icon_util.cc', + 'icon_util.h', + ], + }], + ], + }, + ], +} + +# Local Variables: +# tab-width:2 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=2 shiftwidth=2: |