Index: url/BUILD.gn |
diff --git a/url/BUILD.gn b/url/BUILD.gn |
index feece8dc7be4dcdb2689f79b9c94332b77f63a15..3bffec26cf1751dc38afdf98158b08604dc4a70d 100644 |
--- a/url/BUILD.gn |
+++ b/url/BUILD.gn |
@@ -60,9 +60,7 @@ component("url") { |
configs += [ ":url_icu_config" ] |
if (is_win) { |
- cflags = [ |
- "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
- ] |
+ cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
} |
deps = [ |
@@ -124,12 +122,8 @@ if (!is_android) { |
] |
if (use_icu_alternatives_on_android) { |
- sources -= [ |
- "url_canon_icu_unittest.cc", |
- ] |
- deps -= [ |
- "//third_party/icu:icuuc", |
- ] |
+ sources -= [ "url_canon_icu_unittest.cc" ] |
+ deps -= [ "//third_party/icu:icuuc" ] |
} |
} |
} |