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

Side by Side Diff: build/config/android/internal_rules.gni

Issue 1389663002: GN: Add --depfile to generate_incremental_manifest.py action. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698