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

Unified Diff: components/url_fixer.gypi

Issue 320253004: Componentize URLFixerUpper. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Win64 fix Created 6 years, 6 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 | « components/policy/core/browser/url_blacklist_manager.h ('k') | components/url_fixer/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/url_fixer.gypi
diff --git a/components/network_time.gypi b/components/url_fixer.gypi
similarity index 60%
copy from components/network_time.gypi
copy to components/url_fixer.gypi
index 22426d9407ef3dc59eab0597f1a3671cc4c149bb..5870a1ef024db3541936a230e877a1d80dfae3b1 100644
--- a/components/network_time.gypi
+++ b/components/url_fixer.gypi
@@ -5,20 +5,21 @@
{
'targets': [
{
- 'target_name': 'network_time',
+ 'target_name': 'url_fixer',
'type': 'static_library',
- 'dependencies': [
- '../base/base.gyp:base',
- ],
'include_dirs': [
'..',
],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../net/net.gyp:net',
+ ],
'sources': [
- 'network_time/network_time_tracker.cc',
- 'network_time/network_time_tracker.h',
- 'network_time/network_time_pref_names.cc',
- 'network_time/network_time_pref_names.h',
+ 'url_fixer/url_fixer.cc',
+ 'url_fixer/url_fixer.h',
],
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ 'msvs_disabled_warnings': [4267, ],
},
],
}
« no previous file with comments | « components/policy/core/browser/url_blacklist_manager.h ('k') | components/url_fixer/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698