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

Unified Diff: components/url_formatter/url_formatter.gyp

Issue 1171333003: Move net::FormatUrl and friends outside of //net and into //components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase again now that CQ is fixed Created 5 years, 4 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/url_formatter/url_formatter.cc ('k') | components/url_formatter/url_formatter_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/url_formatter/url_formatter.gyp
diff --git a/components/url_formatter/url_formatter.gyp b/components/url_formatter/url_formatter.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..9375e96d93dd15e63ddf362c0edc5b3452a9e1b3
--- /dev/null
+++ b/components/url_formatter/url_formatter.gyp
@@ -0,0 +1,39 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ # GN version: //components/url_formatter
+ 'target_name': 'url_formatter',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../../base/base.gyp:base',
+ '../../net/net.gyp:net',
+ '../../third_party/icu/icu.gyp:icui18n',
+ '../../third_party/icu/icu.gyp:icuuc',
+ '../../url/url.gyp:url_lib',
+ ],
+ 'sources': [
+ # Note: sources list duplicated in GN build.
+ 'elide_url.cc',
+ 'elide_url.h',
+ 'url_fixer.cc',
+ 'url_fixer.h',
+ 'url_formatter.cc',
+ 'url_formatter.h',
+ ],
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ 'msvs_disabled_warnings': [4267, ],
+
+ 'conditions': [
+ ['OS != "android"', {
+ 'dependencies': [
+ '../../ui/gfx/gfx.gyp:gfx',
+ ]
+ }],
+ ],
+ },
+ ],
+}
« no previous file with comments | « components/url_formatter/url_formatter.cc ('k') | components/url_formatter/url_formatter_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698