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("//base/android/linker/config.gni") | 5 import("//base/android/linker/config.gni") |
6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
7 import("//build/config/android/internal_rules.gni") | 7 import("//build/config/android/internal_rules.gni") |
8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
9 import("//tools/relocation_packer/config.gni") | 9 import("//tools/relocation_packer/config.gni") |
10 | 10 |
(...skipping 980 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
991 } | 991 } |
992 if (defined(invoker.testonly)) { | 992 if (defined(invoker.testonly)) { |
993 testonly = invoker.testonly | 993 testonly = invoker.testonly |
994 } | 994 } |
995 if (defined(invoker.visibility)) { | 995 if (defined(invoker.visibility)) { |
996 visibility = invoker.visibility | 996 visibility = invoker.visibility |
997 } | 997 } |
998 if (defined(invoker.dex_path)) { | 998 if (defined(invoker.dex_path)) { |
999 dex_path = invoker.dex_path | 999 dex_path = invoker.dex_path |
1000 } | 1000 } |
| 1001 if (defined(invoker.manifest_entries)) { |
| 1002 manifest_entries = invoker.manifest_entries |
| 1003 } |
1001 | 1004 |
1002 supports_android = true | 1005 supports_android = true |
1003 requires_android = true | 1006 requires_android = true |
1004 | 1007 |
1005 if (!defined(jar_excluded_patterns)) { | 1008 if (!defined(jar_excluded_patterns)) { |
1006 jar_excluded_patterns = [] | 1009 jar_excluded_patterns = [] |
1007 } | 1010 } |
1008 jar_excluded_patterns += [ | 1011 jar_excluded_patterns += [ |
1009 "*/R.class", | 1012 "*/R.class", |
1010 "*/R##*.class", | 1013 "*/R##*.class", |
(...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1727 template("uiautomator_test") { | 1730 template("uiautomator_test") { |
1728 set_sources_assignment_filter([]) | 1731 set_sources_assignment_filter([]) |
1729 if (defined(invoker.testonly)) { | 1732 if (defined(invoker.testonly)) { |
1730 testonly = invoker.testonly | 1733 testonly = invoker.testonly |
1731 } | 1734 } |
1732 assert(target_name != "") | 1735 assert(target_name != "") |
1733 assert(invoker.deps != [] || true) | 1736 assert(invoker.deps != [] || true) |
1734 group(target_name) { | 1737 group(target_name) { |
1735 } | 1738 } |
1736 } | 1739 } |
OLD | NEW |