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

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

Issue 1129773004: Fix a dependency issue w/ gn refs for android apks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mb_handle_labels
Patch Set: remove comment as not helpful Created 5 years, 7 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 6
7 assert(is_android) 7 assert(is_android)
8 8
9 rebased_android_sdk = rebase_path(android_sdk, root_build_dir) 9 rebased_android_sdk = rebase_path(android_sdk, root_build_dir)
10 rebased_android_sdk_root = rebase_path(android_sdk_root, root_build_dir) 10 rebased_android_sdk_root = rebase_path(android_sdk_root, root_build_dir)
(...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after
609 "--load-library-from-zip-file=1", 609 "--load-library-from-zip-file=1",
610 "--rezip-apk-jar-path", 610 "--rezip-apk-jar-path",
611 rebase_path(_rezip_jar_path, root_build_dir), 611 rebase_path(_rezip_jar_path, root_build_dir),
612 ] 612 ]
613 } 613 }
614 } 614 }
615 615
616 group(target_name) { 616 group(target_name) {
617 deps = [ 617 deps = [
618 ":${target_name}__finalize", 618 ":${target_name}__finalize",
619 ":${target_name}__package_resources",
619 ] 620 ]
620 } 621 }
621 } 622 }
622 623
623 template("java_prebuilt_impl") { 624 template("java_prebuilt_impl") {
624 set_sources_assignment_filter([]) 625 set_sources_assignment_filter([])
625 if (defined(invoker.testonly)) { 626 if (defined(invoker.testonly)) {
626 testonly = invoker.testonly 627 testonly = invoker.testonly
627 } 628 }
628 _supports_android = 629 _supports_android =
(...skipping 591 matching lines...) Expand 10 before | Expand all | Expand 10 after
1220 script = "//build/android/gyp/generate_split_manifest.py" 1221 script = "//build/android/gyp/generate_split_manifest.py"
1221 outputs = [ 1222 outputs = [
1222 depfile, 1223 depfile,
1223 invoker.out_manifest, 1224 invoker.out_manifest,
1224 ] 1225 ]
1225 inputs = [ 1226 inputs = [
1226 invoker.main_manifest, 1227 invoker.main_manifest,
1227 ] 1228 ]
1228 } 1229 }
1229 } 1230 }
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