diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-02 17:19:35 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-02 17:19:35 +0000 |
commit | e0eb4a9bd87048ef2008aaf89916b466026c6c64 (patch) | |
tree | b257756c8ad0a7e90588632db3616e85dd79c669 /build/temp_gyp | |
parent | f0c5022616c10a3908422e1f527ea696d45a67c8 (diff) | |
download | chromium_src-e0eb4a9bd87048ef2008aaf89916b466026c6c64.zip chromium_src-e0eb4a9bd87048ef2008aaf89916b466026c6c64.tar.gz chromium_src-e0eb4a9bd87048ef2008aaf89916b466026c6c64.tar.bz2 |
Add googleurl.gyp:googleurl_unittests
Review URL: http://codereview.chromium.org/28317
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10705 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/temp_gyp')
-rw-r--r-- | build/temp_gyp/googleurl.gyp | 28 |
1 files changed, 22 insertions, 6 deletions
diff --git a/build/temp_gyp/googleurl.gyp b/build/temp_gyp/googleurl.gyp index 6452a3f..4332e13 100644 --- a/build/temp_gyp/googleurl.gyp +++ b/build/temp_gyp/googleurl.gyp @@ -14,6 +14,12 @@ { 'target_name': 'googleurl', 'type': 'static_library', + 'dependencies': [ + '../../base/base.gyp:base', + '../../third_party/icu38/icu38.gyp:icudata', + '../../third_party/icu38/icu38.gyp:icui18n', + '../../third_party/icu38/icu38.gyp:icuuc', + ], 'sources': [ '../../googleurl/src/gurl.cc', '../../googleurl/src/gurl.h', @@ -43,17 +49,27 @@ '../../googleurl/src/url_util.cc', '../../googleurl/src/url_util.h', ], - 'dependencies': [ - '../../base/base.gyp:base', - '../../third_party/icu38/icu38.gyp:icudata', - '../../third_party/icu38/icu38.gyp:icui18n', - '../../third_party/icu38/icu38.gyp:icuuc', - ], 'direct_dependent_settings': { 'include_dirs': [ '../..', ], }, }, + { + 'target_name': 'googleurl_unittests', + 'type': 'executable', + 'dependencies': [ + 'googleurl', + '../../testing/gtest.gyp:gtest', + '../../third_party/icu38/icu38.gyp:icuuc', + ], + 'sources': [ + '../../googleurl/src/gurl_unittest.cc', + '../../googleurl/src/url_canon_unittest.cc', + '../../googleurl/src/url_parse_unittest.cc', + '../../googleurl/src/url_test_utils.h', + '../../googleurl/src/url_util_unittest.cc', + ], + }, ], } |