From 31b7a849b45f82dbe9784f3d6c15dea098af7041 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Mon, 20 Apr 2020 06:25:55 +0000 Subject: community/chromium: upgrade to 81.0.4044.113 --- community/chromium/gn_bootstrap_ninja.patch | 32 ----------------------------- 1 file changed, 32 deletions(-) delete mode 100644 community/chromium/gn_bootstrap_ninja.patch (limited to 'community/chromium/gn_bootstrap_ninja.patch') diff --git a/community/chromium/gn_bootstrap_ninja.patch b/community/chromium/gn_bootstrap_ninja.patch deleted file mode 100644 index 88dc0a6500..0000000000 --- a/community/chromium/gn_bootstrap_ninja.patch +++ /dev/null @@ -1,32 +0,0 @@ -Patch by Michael Forney - -Already merged https://chromium-review.googlesource.com/c/chromium/src/+/1975453 - ---- tools/gn/bootstrap/bootstrap.py -+++ tools/gn/bootstrap/bootstrap.py -@@ -70,6 +70,7 @@ - out_dir = os.path.join(SRC_ROOT, build_rel) - gn_path = options.output or os.path.join(out_dir, 'gn') - gn_build_dir = os.path.join(out_dir, 'gn_build') -+ ninja_binary = os.environ.get('NINJA', 'ninja') - - # TODO(thomasanderson): Remove this once Ubuntu Trusty reaches EOL, or when - # Chromium's infrastructure is upgraded from Trusty to Xenial, whichever comes -@@ -90,7 +91,7 @@ - os.environ.get('CFLAGS', '').split() + - os.environ.get('CXXFLAGS', '').split()), - ]) + '\n') -- subprocess.check_call(['ninja', '-C', libcxx_dir]) -+ subprocess.check_call([ninja_binary, '-C', libcxx_dir]) - shutil.copy2(os.path.join(gn_build_dir, 'libc++.gn.so'), out_dir) - - def append_to_env(var, vals): -@@ -120,7 +121,7 @@ - shutil.copy2( - os.path.join(BOOTSTRAP_DIR, 'last_commit_position.h'), gn_build_dir) - subprocess.check_call( -- ['ninja', '-C', gn_build_dir, 'gn', '-w', 'dupbuild=err']) -+ [ninja_binary, '-C', gn_build_dir, '-w', 'dupbuild=err', 'gn']) - shutil.copy2(os.path.join(gn_build_dir, 'gn'), gn_path) - - if not options.skip_generate_buildfiles: -- cgit v1.2.3