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/zip.gni") | 6 import("//build/config/zip.gni") |
7 import("//third_party/ijar/ijar.gni") | 7 import("//third_party/ijar/ijar.gni") |
8 | 8 |
9 assert(is_android) | 9 assert(is_android) |
10 | 10 |
(...skipping 745 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
756 _android_manifest, | 756 _android_manifest, |
757 ] | 757 ] |
758 outputs = [ | 758 outputs = [ |
759 depfile, | 759 depfile, |
760 _incremental_android_manifest, | 760 _incremental_android_manifest, |
761 ] | 761 ] |
762 | 762 |
763 _rebased_src_manifest = rebase_path(_android_manifest, root_build_dir) | 763 _rebased_src_manifest = rebase_path(_android_manifest, root_build_dir) |
764 _rebased_incremental_manifest = | 764 _rebased_incremental_manifest = |
765 rebase_path(_incremental_android_manifest, root_build_dir) | 765 rebase_path(_incremental_android_manifest, root_build_dir) |
| 766 _rebased_depfile = rebase_path(depfile, root_build_dir) |
766 args = [ | 767 args = [ |
767 "--src-manifest=$_rebased_src_manifest", | 768 "--src-manifest=$_rebased_src_manifest", |
768 "--out-manifest=$_rebased_incremental_manifest", | 769 "--out-manifest=$_rebased_incremental_manifest", |
| 770 "--depfile=$_rebased_depfile", |
769 ] | 771 ] |
770 if (disable_incremental_isolated_processes) { | 772 if (disable_incremental_isolated_processes) { |
771 args += [ "--disable-isolated-processes" ] | 773 args += [ "--disable-isolated-processes" ] |
772 } | 774 } |
773 } | 775 } |
774 | 776 |
775 _incremental_package_resources_target_name = | 777 _incremental_package_resources_target_name = |
776 "${target_name}_incremental__package_resources" | 778 "${target_name}_incremental__package_resources" |
777 | 779 |
778 # TODO(agrieve): See if we can speed up this step by swapping the manifest | 780 # TODO(agrieve): See if we can speed up this step by swapping the manifest |
(...skipping 865 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1644 ] | 1646 ] |
1645 args = [ | 1647 args = [ |
1646 "--depfile", | 1648 "--depfile", |
1647 rebase_path(depfile, root_build_dir), | 1649 rebase_path(depfile, root_build_dir), |
1648 "--script-output-path", | 1650 "--script-output-path", |
1649 rebase_path(generated_script, root_build_dir), | 1651 rebase_path(generated_script, root_build_dir), |
1650 ] | 1652 ] |
1651 args += test_runner_args | 1653 args += test_runner_args |
1652 } | 1654 } |
1653 } | 1655 } |
OLD | NEW |