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

Unified Diff: url/url.gyp

Issue 1722773002: Mustash: Move GURL ParamTraits to url/ipc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
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"', {

Powered by Google App Engine
This is Rietveld 408576698