Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1162)

Unified Diff: build/temp_gyp/googleurl.gyp

Issue 28317: Add googleurl.gyp:googleurl_unittests (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/temp_gyp/googleurl.gyp
===================================================================
--- build/temp_gyp/googleurl.gyp (revision 10700)
+++ build/temp_gyp/googleurl.gyp (working copy)
@@ -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',
+ ],
+ },
],
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698