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

Side by Side Diff: components/cronet/android/BUILD.gn

Issue 2959303002: [Cronet] Use gn desc to find third party licenses on Android. (Closed)
Patch Set: Use single quotes. Created 3 years, 5 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 unified diff | Download patch
« no previous file with comments | « no previous file | tools/licenses.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//base/android/jni_generator/jni_exception_list.gni") 5 import("//base/android/jni_generator/jni_exception_list.gni")
6 import("//build/buildflag_header.gni") 6 import("//build/buildflag_header.gni")
7 import("//build/config/android/config.gni") 7 import("//build/config/android/config.gni")
8 import("//build/config/android/rules.gni") 8 import("//build/config/android/rules.gni")
9 import("//build/util/process_version.gni") 9 import("//build/util/process_version.gni")
10 import("//build/util/version.gni") 10 import("//build/util/version.gni")
(...skipping 1183 matching lines...) Expand 10 before | Expand all | Expand 10 after
1194 "//base:base_android_java_enums_srcjar", 1194 "//base:base_android_java_enums_srcjar",
1195 "//net/android:net_android_java_enums_srcjar", 1195 "//net/android:net_android_java_enums_srcjar",
1196 "//net/android:net_errors_java", 1196 "//net/android:net_errors_java",
1197 ] 1197 ]
1198 jar_path = "$_package_dir/cronet_impl_native_java-src.jar" 1198 jar_path = "$_package_dir/cronet_impl_native_java-src.jar"
1199 } 1199 }
1200 1200
1201 action("generate_licenses") { 1201 action("generate_licenses") {
1202 _license_path = "$_package_dir/LICENSE" 1202 _license_path = "$_package_dir/LICENSE"
1203 1203
1204 script = "//components/cronet/tools/cronet_licenses.py" 1204 script = "//tools/licenses.py"
1205 outputs = [ 1205 outputs = [
1206 _license_path, 1206 _license_path,
1207 ] 1207 ]
1208 args = [ 1208 args = [
1209 "license", 1209 "license_file",
1210 rebase_path(_license_path, root_build_dir), 1210 rebase_path(_license_path, root_build_dir),
1211 "--gn-target",
1212 "//components/cronet/android:cronet",
1213 "--gn-out-dir",
1214 ".",
1211 ] 1215 ]
1212 } 1216 }
1213 1217
1214 action("generate_javadoc") { 1218 action("generate_javadoc") {
1215 script = "//components/cronet/tools/generate_javadoc.py" 1219 script = "//components/cronet/tools/generate_javadoc.py"
1216 depfile = "$target_gen_dir/$target_name.d" 1220 depfile = "$target_gen_dir/$target_name.d"
1217 _stamp_file = "$target_gen_dir/$target_name.stamp" 1221 _stamp_file = "$target_gen_dir/$target_name.stamp"
1218 outputs = [ 1222 outputs = [
1219 _stamp_file, 1223 _stamp_file,
1220 ] 1224 ]
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
1490 deps = [ 1494 deps = [
1491 ":cronet_package_copy_native_test_lib", 1495 ":cronet_package_copy_native_test_lib",
1492 ":cronet_package_copy_native_test_lib_unstripped", 1496 ":cronet_package_copy_native_test_lib_unstripped",
1493 ":cronet_package_copy_test_assets", 1497 ":cronet_package_copy_test_assets",
1494 ":cronet_package_copy_test_files", 1498 ":cronet_package_copy_test_files",
1495 ":cronet_package_copy_test_support_apks", 1499 ":cronet_package_copy_test_support_apks",
1496 ":repackage_extracted_test_jars", 1500 ":repackage_extracted_test_jars",
1497 ] 1501 ]
1498 } 1502 }
1499 } 1503 }
OLDNEW
« no previous file with comments | « no previous file | tools/licenses.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698