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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/sanitizers/sanitizers.gni") | 6 import("//build/config/sanitizers/sanitizers.gni") |
7 | 7 |
8 assert(is_android) | 8 assert(is_android) |
9 | 9 |
10 # These identify targets that have .build_config files (except for android_apk, | 10 # These identify targets that have .build_config files (except for android_apk, |
(...skipping 2368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2379 output = _dex_path | 2379 output = _dex_path |
2380 deps = [ | 2380 deps = [ |
2381 ":$_compile_java_target", | 2381 ":$_compile_java_target", |
2382 ] | 2382 ] |
2383 } | 2383 } |
2384 } | 2384 } |
2385 | 2385 |
2386 group(target_name) { | 2386 group(target_name) { |
2387 forward_variables_from(invoker, | 2387 forward_variables_from(invoker, |
2388 [ | 2388 [ |
| 2389 "data", |
2389 "data_deps", | 2390 "data_deps", |
2390 "visibility", | 2391 "visibility", |
2391 ]) | 2392 ]) |
2392 if (!defined(data_deps)) { | 2393 if (!defined(data_deps)) { |
2393 data_deps = [] | 2394 data_deps = [] |
2394 } | 2395 } |
2395 public_deps = _final_deps | 2396 public_deps = _final_deps |
2396 if (_has_lint_target) { | 2397 if (_has_lint_target) { |
2397 data_deps += [ ":${_template_name}__analysis" ] | 2398 data_deps += [ ":${_template_name}__analysis" ] |
2398 } | 2399 } |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2630 outputs = [ | 2631 outputs = [ |
2631 depfile, | 2632 depfile, |
2632 invoker.out_manifest, | 2633 invoker.out_manifest, |
2633 ] | 2634 ] |
2634 inputs = [ | 2635 inputs = [ |
2635 invoker.main_manifest, | 2636 invoker.main_manifest, |
2636 ] | 2637 ] |
2637 } | 2638 } |
2638 } | 2639 } |
2639 } | 2640 } |
OLD | NEW |