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 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
576 process_resources("${target_name}__process_resources") { | 576 process_resources("${target_name}__process_resources") { |
577 resource_dirs = invoker.resource_dirs | 577 resource_dirs = invoker.resource_dirs |
578 if (defined(invoker.custom_package)) { | 578 if (defined(invoker.custom_package)) { |
579 custom_package = invoker.custom_package | 579 custom_package = invoker.custom_package |
580 } | 580 } |
581 | 581 |
582 if (defined(invoker.v14_verify_only)) { | 582 if (defined(invoker.v14_verify_only)) { |
583 v14_verify_only = invoker.v14_verify_only | 583 v14_verify_only = invoker.v14_verify_only |
584 } | 584 } |
585 | 585 |
| 586 if (defined(invoker.v14_skip)) { |
| 587 v14_skip = invoker.v14_skip |
| 588 } |
| 589 |
586 if (defined(invoker.shared_resources)) { | 590 if (defined(invoker.shared_resources)) { |
587 shared_resources = invoker.shared_resources | 591 shared_resources = invoker.shared_resources |
588 } | 592 } |
589 } | 593 } |
590 | 594 |
591 group(target_name) { | 595 group(target_name) { |
592 deps = [ | 596 deps = [ |
593 ":${target_name}__build_config", | 597 ":${target_name}__build_config", |
594 ":${target_name}__process_resources", | 598 ":${target_name}__process_resources", |
595 ] | 599 ] |
(...skipping 1219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1815 template("uiautomator_test") { | 1819 template("uiautomator_test") { |
1816 set_sources_assignment_filter([]) | 1820 set_sources_assignment_filter([]) |
1817 if (defined(invoker.testonly)) { | 1821 if (defined(invoker.testonly)) { |
1818 testonly = invoker.testonly | 1822 testonly = invoker.testonly |
1819 } | 1823 } |
1820 assert(target_name != "") | 1824 assert(target_name != "") |
1821 assert(invoker.deps != [] || true) | 1825 assert(invoker.deps != [] || true) |
1822 group(target_name) { | 1826 group(target_name) { |
1823 } | 1827 } |
1824 } | 1828 } |
OLD | NEW |