| 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/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
| 9 import("//build/toolchain/toolchain.gni") | 9 import("//build/toolchain/toolchain.gni") |
| 10 import("//third_party/android_platform/config.gni") | 10 import("//third_party/android_platform/config.gni") |
| (...skipping 2062 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2073 rebase_path(invoker.isolate_file), | 2073 rebase_path(invoker.isolate_file), |
| 2074 "--replace", | 2074 "--replace", |
| 2075 "<(DEPTH)=/", | 2075 "<(DEPTH)=/", |
| 2076 ], | 2076 ], |
| 2077 "scope", | 2077 "scope", |
| 2078 [ invoker.isolate_file ]) | 2078 [ invoker.isolate_file ]) |
| 2079 data = isolate_values.files | 2079 data = isolate_values.files |
| 2080 } | 2080 } |
| 2081 } | 2081 } |
| 2082 | 2082 |
| 2083 # TODO(GYP): Delete once recipes no longer use this target. | 2083 # TODO: Delete once recipes no longer use this target. |
| 2084 group("${target_name}_run") { | 2084 group("${target_name}_run") { |
| 2085 public_deps = [ | 2085 public_deps = [ |
| 2086 ":${invoker.target_name}", | 2086 ":${invoker.target_name}", |
| 2087 ] | 2087 ] |
| 2088 } | 2088 } |
| 2089 group("${target_name}_incremental") { | 2089 group("${target_name}_incremental") { |
| 2090 public_deps = [ | 2090 public_deps = [ |
| 2091 ":${_apk_target_name}_dist_ijar", | 2091 ":${_apk_target_name}_dist_ijar", |
| 2092 ":${_apk_target_name}_incremental", | 2092 ":${_apk_target_name}_incremental", |
| 2093 ":${_test_runner_target_name}_incremental", | 2093 ":${_test_runner_target_name}_incremental", |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2432 "--target", | 2432 "--target", |
| 2433 rebase_path(invoker.target, root_build_dir), | 2433 rebase_path(invoker.target, root_build_dir), |
| 2434 "--output-directory", | 2434 "--output-directory", |
| 2435 rebase_path(root_out_dir, root_build_dir), | 2435 rebase_path(root_out_dir, root_build_dir), |
| 2436 ] | 2436 ] |
| 2437 if (defined(invoker.flag_name)) { | 2437 if (defined(invoker.flag_name)) { |
| 2438 args += [ "--flag-name=${invoker.flag_name}" ] | 2438 args += [ "--flag-name=${invoker.flag_name}" ] |
| 2439 } | 2439 } |
| 2440 } | 2440 } |
| 2441 } | 2441 } |
| OLD | NEW |