Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Unified Diff: components/cronet/android/BUILD.gn

Issue 2150933007: [Cronet] Use gn desc to find third party licenses on Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Pass gn-path for gn inside of //buildtools. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | components/cronet/tools/cronet_licenses.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/cronet/android/BUILD.gn
diff --git a/components/cronet/android/BUILD.gn b/components/cronet/android/BUILD.gn
index 9abfac79468f67f4c1e96afba08e98da33843615..24e769521ce689fd428645de0c416bac1cc96c03 100644
--- a/components/cronet/android/BUILD.gn
+++ b/components/cronet/android/BUILD.gn
@@ -1203,12 +1203,19 @@ action("generate_licenses") {
_license_path = "$_package_dir/LICENSE"
script = "//components/cronet/tools/cronet_licenses.py"
+ inputs = [
+ "//build/util/LASTCHANGE",
+ "//buildtools/linux64/gn",
+ ]
outputs = [
_license_path,
]
args = [
"license",
rebase_path(_license_path, root_build_dir),
+ "--gn",
+ "--gn-path",
+ rebase_path("//buildtools/linux64/gn", root_build_dir),
]
}
« no previous file with comments | « no previous file | components/cronet/tools/cronet_licenses.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698