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

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

Issue 822713002: Update from https://crrev.com/309415 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years 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 1435 matching lines...) Expand 10 before | Expand all | Expand 10 after
1446 } else { 1446 } else {
1447 unittests_binary = "lib" + test_suite_name + ".so" 1447 unittests_binary = "lib" + test_suite_name + ".so"
1448 } 1448 }
1449 1449
1450 android_apk(target_name) { 1450 android_apk(target_name) {
1451 _apk_name = test_suite_name 1451 _apk_name = test_suite_name
1452 final_apk_path = "$root_build_dir/${_apk_name}_apk/${_apk_name}-debug.apk" 1452 final_apk_path = "$root_build_dir/${_apk_name}_apk/${_apk_name}-debug.apk"
1453 java_files = [ "//testing/android/java/src/org/chromium/native_test/ChromeNa tiveTestActivity.java" ] 1453 java_files = [ "//testing/android/java/src/org/chromium/native_test/ChromeNa tiveTestActivity.java" ]
1454 android_manifest = "//testing/android/java/AndroidManifest.xml" 1454 android_manifest = "//testing/android/java/AndroidManifest.xml"
1455 native_libs = [ unittests_binary ] 1455 native_libs = [ unittests_binary ]
1456 if (defined(invoker.asset_location)) {
1457 asset_location = invoker.asset_location
1458 }
1456 deps = [ 1459 deps = [
1457 "//base:base_java", 1460 "//base:base_java",
1458 ] 1461 ]
1459 if (defined(invoker.deps)) { 1462 if (defined(invoker.deps)) {
1460 deps += invoker.deps 1463 deps += invoker.deps
1461 } 1464 }
1462 datadeps = [ 1465 datadeps = [
1463 "//tools/android/forwarder2", 1466 "//tools/android/forwarder2",
1464 "//tools/android/md5sum", 1467 "//tools/android/md5sum",
1465 ] 1468 ]
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
1687 # TODO(GYP): implement this. 1690 # TODO(GYP): implement this.
1688 template("uiautomator_test") { 1691 template("uiautomator_test") {
1689 if (defined(invoker.testonly)) { 1692 if (defined(invoker.testonly)) {
1690 testonly = invoker.testonly 1693 testonly = invoker.testonly
1691 } 1694 }
1692 assert(target_name != "") 1695 assert(target_name != "")
1693 assert(invoker.deps != [] || true) 1696 assert(invoker.deps != [] || true)
1694 group(target_name) { 1697 group(target_name) {
1695 } 1698 }
1696 } 1699 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | cc/BUILD.gn » ('j') | cc/scheduler/scheduler_state_machine.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698