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

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

Issue 898853006: Java content handler for Android. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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
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("//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
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 }
1004 if (defined(invoker.main_class)) {
1005 main_class = invoker.main_class
1006 }
1001 1007
1002 supports_android = true 1008 supports_android = true
1003 requires_android = true 1009 requires_android = true
1004 1010
1005 if (!defined(jar_excluded_patterns)) { 1011 if (!defined(jar_excluded_patterns)) {
1006 jar_excluded_patterns = [] 1012 jar_excluded_patterns = []
1007 } 1013 }
1008 jar_excluded_patterns += [ 1014 jar_excluded_patterns += [
1009 "*/R.class", 1015 "*/R.class",
1010 "*/R##*.class", 1016 "*/R##*.class",
(...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after
1727 template("uiautomator_test") { 1733 template("uiautomator_test") {
1728 set_sources_assignment_filter([]) 1734 set_sources_assignment_filter([])
1729 if (defined(invoker.testonly)) { 1735 if (defined(invoker.testonly)) {
1730 testonly = invoker.testonly 1736 testonly = invoker.testonly
1731 } 1737 }
1732 assert(target_name != "") 1738 assert(target_name != "")
1733 assert(invoker.deps != [] || true) 1739 assert(invoker.deps != [] || true)
1734 group(target_name) { 1740 group(target_name) {
1735 } 1741 }
1736 } 1742 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698