| Index: mojo/tools/roll/patch.py
|
| diff --git a/mojo/tools/roll/patch.py b/mojo/tools/roll/patch.py
|
| index 30e5a963b4c1534617cc0f37a3dcbb6519e006a3..5711627cf0d2d6ef6aad574832c3989a5b199a59 100755
|
| --- a/mojo/tools/roll/patch.py
|
| +++ b/mojo/tools/roll/patch.py
|
| @@ -14,7 +14,10 @@ def patch():
|
| utils.commit("filter gyp_environment out of build/landmines.py")
|
|
|
| utils.filter_file("gpu/BUILD.gn", lambda line: not "//gpu/ipc" in line)
|
| - utils.commit("filter gpu/ipc out of gpu/BUILD.gn")
|
| + utils.commit("filter //gpu/ipc out of gpu/BUILD.gn")
|
| +
|
| + utils.filter_file("cc/BUILD.gn", lambda line: not "//media" in line)
|
| + utils.commit("filter //media out of cc/BUILD.gn")
|
|
|
| for p in utils.find(["*.patch"], os.path.dirname(os.path.realpath(__file__))):
|
| print "applying patch %s" % os.path.basename(p)
|
|
|