OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # Do not add any imports to non-//build directories here. | 5 # Do not add any imports to non-//build directories here. |
6 # Some projects (e.g. V8) do not have non-build directories DEPS'ed in. | 6 # Some projects (e.g. V8) do not have non-build directories DEPS'ed in. |
7 import("//build/config/android/config.gni") | 7 import("//build/config/android/config.gni") |
8 import("//build/config/android/internal_rules.gni") | 8 import("//build/config/android/internal_rules.gni") |
9 import("//build/config/compiler/compiler.gni") | 9 import("//build/config/compiler/compiler.gni") |
10 import("//build/config/dcheck_always_on.gni") | 10 import("//build/config/dcheck_always_on.gni") |
(...skipping 1855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1866 "@FileArg($_rebased_build_config:uncompressed_locales_java_list)", | 1866 "@FileArg($_rebased_build_config:uncompressed_locales_java_list)", |
1867 ] | 1867 ] |
1868 } | 1868 } |
1869 _srcjar_deps += [ ":${_template_name}__build_config_java" ] | 1869 _srcjar_deps += [ ":${_template_name}__build_config_java" ] |
1870 } | 1870 } |
1871 | 1871 |
1872 java_target = "${_template_name}__java" | 1872 java_target = "${_template_name}__java" |
1873 java_library_impl(java_target) { | 1873 java_library_impl(java_target) { |
1874 forward_variables_from(invoker, | 1874 forward_variables_from(invoker, |
1875 [ | 1875 [ |
| 1876 "alternative_android_sdk_ijar", |
| 1877 "alternative_android_sdk_ijar_dep", |
1876 "chromium_code", | 1878 "chromium_code", |
1877 "java_files", | 1879 "java_files", |
1878 "run_findbugs_override", | 1880 "run_findbugs_override", |
1879 ]) | 1881 ]) |
1880 supports_android = true | 1882 supports_android = true |
1881 requires_android = true | 1883 requires_android = true |
1882 override_build_config = _build_config | 1884 override_build_config = _build_config |
1883 deps = _android_manifest_deps + [ ":$build_config_target" ] | 1885 deps = _android_manifest_deps + [ ":$build_config_target" ] |
1884 | 1886 |
1885 android_manifest = _android_manifest | 1887 android_manifest = _android_manifest |
(...skipping 1007 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2893 # because in practice they seem to contain classes required to be in the | 2895 # because in practice they seem to contain classes required to be in the |
2894 # classpath. | 2896 # classpath. |
2895 deps += _subjar_targets | 2897 deps += _subjar_targets |
2896 } | 2898 } |
2897 if (defined(_res_target_name)) { | 2899 if (defined(_res_target_name)) { |
2898 deps += [ ":$_res_target_name" ] | 2900 deps += [ ":$_res_target_name" ] |
2899 } | 2901 } |
2900 } | 2902 } |
2901 } | 2903 } |
2902 } | 2904 } |
OLD | NEW |