Roll Chrome into Mojo. Update from https://crrev.com/313321 This roll is to pick up a fix which prevents -Wl,--as-needed being used in Release ASAN builds. This also has some manual changes to mojo only code to fix interface changes from chromium (mainly, changes in skia interfaces, and changes in cc). It updates a cc patch, which started failing to apply I also added patch files to deal with the upstream move of mojo to third_party/mojo/. BUG=452105 TBR=jamesr@chromium.org Review URL: https://codereview.chromium.org/885443002
diff --git a/gurl_unittest.cc b/gurl_unittest.cc index a699189..bea1a0c 100644 --- a/gurl_unittest.cc +++ b/gurl_unittest.cc
@@ -281,6 +281,9 @@ const char* expected; } resolve_cases[] = { {"http://www.google.com/", "foo.html", true, "http://www.google.com/foo.html"}, + {"http://www.google.com/foo/", "bar", true, "http://www.google.com/foo/bar"}, + {"http://www.google.com/foo/", "/bar", true, "http://www.google.com/bar"}, + {"http://www.google.com/foo", "bar", true, "http://www.google.com/bar"}, {"http://www.google.com/", "http://images.google.com/foo.html", true, "http://images.google.com/foo.html"}, {"http://www.google.com/blah/bloo?c#d", "../../../hello/./world.html?a#b", true, "http://www.google.com/hello/world.html?a#b"}, {"http://www.google.com/foo#bar", "#com", true, "http://www.google.com/foo#com"},