| 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("//build/toolchain/toolchain.gni") | 8 import("//build/toolchain/toolchain.gni") |
| 9 import("//third_party/android_platform/config.gni") | 9 import("//third_party/android_platform/config.gni") |
| 10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
| (...skipping 1591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1602 | 1602 |
| 1603 _create_incremental_script_rule_name = "${_template_name}__incremental_script" | 1603 _create_incremental_script_rule_name = "${_template_name}__incremental_script" |
| 1604 action(_create_incremental_script_rule_name) { | 1604 action(_create_incremental_script_rule_name) { |
| 1605 script = "//build/android/incremental_install/create_install_script.py" | 1605 script = "//build/android/incremental_install/create_install_script.py" |
| 1606 depfile = "$target_gen_dir/$target_name.d" | 1606 depfile = "$target_gen_dir/$target_name.d" |
| 1607 deps = [ | 1607 deps = [ |
| 1608 ":$build_config_target", | 1608 ":$build_config_target", |
| 1609 ] | 1609 ] |
| 1610 | 1610 |
| 1611 _generated_script_path = | 1611 _generated_script_path = |
| 1612 "${root_out_dir}/bin/install_incremental_${_template_name}" | 1612 "${root_out_dir}/bin/install_${_template_name}_incremental" |
| 1613 outputs = [ | 1613 outputs = [ |
| 1614 depfile, | 1614 depfile, |
| 1615 _generated_script_path, | 1615 _generated_script_path, |
| 1616 ] | 1616 ] |
| 1617 | 1617 |
| 1618 _rebased_apk_path_no_ext = | 1618 _rebased_apk_path_no_ext = |
| 1619 rebase_path(_final_apk_path_no_ext, root_build_dir) | 1619 rebase_path(_final_apk_path_no_ext, root_build_dir) |
| 1620 _rebased_generated_script_path = | 1620 _rebased_generated_script_path = |
| 1621 rebase_path(_generated_script_path, root_build_dir) | 1621 rebase_path(_generated_script_path, root_build_dir) |
| 1622 _rebased_depfile = rebase_path(depfile, root_build_dir) | 1622 _rebased_depfile = rebase_path(depfile, root_build_dir) |
| (...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2046 | 2046 |
| 2047 # TODO(GYP): implement this. | 2047 # TODO(GYP): implement this. |
| 2048 template("uiautomator_test") { | 2048 template("uiautomator_test") { |
| 2049 set_sources_assignment_filter([]) | 2049 set_sources_assignment_filter([]) |
| 2050 forward_variables_from(invoker, [ "testonly" ]) | 2050 forward_variables_from(invoker, [ "testonly" ]) |
| 2051 assert(target_name != "") | 2051 assert(target_name != "") |
| 2052 assert(invoker.deps != [] || true) | 2052 assert(invoker.deps != [] || true) |
| 2053 group(target_name) { | 2053 group(target_name) { |
| 2054 } | 2054 } |
| 2055 } | 2055 } |
| OLD | NEW |