summaryrefslogtreecommitdiffstats
path: root/components/url_fixer
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-09 21:10:25 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-09 21:10:25 +0000
commit273ae5ab4a7e4f40748bdb6d35487dea71f6c22d (patch)
treea3f390b1eb6f4a96d3cc5bec9b6ae94759335cab /components/url_fixer
parent49a1a989fcd17a79789c37cbc75b8e87845b85e4 (diff)
downloadchromium_src-273ae5ab4a7e4f40748bdb6d35487dea71f6c22d.zip
chromium_src-273ae5ab4a7e4f40748bdb6d35487dea71f6c22d.tar.gz
chromium_src-273ae5ab4a7e4f40748bdb6d35487dea71f6c22d.tar.bz2
Add more components to GN build.
domain_reliability favicon history url_fixer R=jamesr@chromium.org Review URL: https://codereview.chromium.org/377393002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282120 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/url_fixer')
-rw-r--r--components/url_fixer/BUILD.gn20
1 files changed, 20 insertions, 0 deletions
diff --git a/components/url_fixer/BUILD.gn b/components/url_fixer/BUILD.gn
new file mode 100644
index 0000000..bf29f35
--- /dev/null
+++ b/components/url_fixer/BUILD.gn
@@ -0,0 +1,20 @@
+# Copyright 2014 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.
+
+static_library("url_fixer") {
+ sources = [
+ "url_fixer.cc",
+ "url_fixer.h",
+ ]
+
+ deps = [
+ "//base",
+ "//net",
+ ]
+
+ if (is_win) {
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ cflags = [ "/wd4267" ]
+ }
+}