OLD | NEW |
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("//build/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
7 import("//build/config/android/rules.gni") | 7 import("//build/config/android/rules.gni") |
8 import("//build/util/version.gni") | 8 import("//build/util/version.gni") |
9 import("//chrome/version.gni") | 9 import("//chrome/version.gni") |
10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
(...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
810 action("generate_licenses") { | 810 action("generate_licenses") { |
811 _license_path = "$_package_dir/LICENSE" | 811 _license_path = "$_package_dir/LICENSE" |
812 | 812 |
813 script = "//components/cronet/tools/cronet_licenses.py" | 813 script = "//components/cronet/tools/cronet_licenses.py" |
814 outputs = [ | 814 outputs = [ |
815 _license_path, | 815 _license_path, |
816 ] | 816 ] |
817 args = [ | 817 args = [ |
818 "license", | 818 "license", |
819 rebase_path(_license_path, root_build_dir), | 819 rebase_path(_license_path, root_build_dir), |
820 "--gn", | |
821 ] | 820 ] |
822 } | 821 } |
823 | 822 |
824 action("generate_javadoc") { | 823 action("generate_javadoc") { |
825 script = "//components/cronet/tools/generate_javadoc.py" | 824 script = "//components/cronet/tools/generate_javadoc.py" |
826 depfile = "$target_gen_dir/$target_name.d" | 825 depfile = "$target_gen_dir/$target_name.d" |
827 outputs = [ | 826 outputs = [ |
828 depfile, | 827 depfile, |
829 ] | 828 ] |
830 args = [ | 829 args = [ |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
893 ":cronet_package_copy_native_lib", | 892 ":cronet_package_copy_native_lib", |
894 ":cronet_package_copy_native_lib_unstripped", | 893 ":cronet_package_copy_native_lib_unstripped", |
895 ":generate_javadoc", | 894 ":generate_javadoc", |
896 ":generate_licenses", | 895 ":generate_licenses", |
897 ":jar_cronet_api_source", | 896 ":jar_cronet_api_source", |
898 ":jar_cronet_other_source", | 897 ":jar_cronet_other_source", |
899 ":jar_cronet_sample_source", | 898 ":jar_cronet_sample_source", |
900 ":repackage_extracted_jars", | 899 ":repackage_extracted_jars", |
901 ] | 900 ] |
902 } | 901 } |
OLD | NEW |