Index: url/url.gyp |
diff --git a/url/url.gyp b/url/url.gyp |
index e9e7ff5ed0af74bb4191cae961a4a78119083538..c49d13c32aed55ba0af6792c307137f4740adc27 100644 |
--- a/url/url.gyp |
+++ b/url/url.gyp |
@@ -24,6 +24,8 @@ |
], |
'sources': [ |
'<@(gurl_sources)', |
+ 'ipc/url_param_traits.cc', |
brettw
2016/02/22 22:07:15
This should be in a separate target like GN. That
|
+ 'ipc/url_param_traits.h', |
], |
'direct_dependent_settings': { |
'include_dirs': [ |
@@ -58,6 +60,16 @@ |
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
'msvs_disabled_warnings': [4267, ], |
}, |
+ { |
+ 'target_name': 'url_ipc_unittests', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ '../base/base.gyp:run_all_unittests', |
+ '../testing/gtest.gyp:gtest', |
+ 'url_lib', |
+ ], |
+ 'sources': [ 'url_param_traits_unittest.cc' ], |
+ }, |
], |
'conditions': [ |
['OS=="android"', { |