| 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("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/sanitizers/sanitizers.gni") | 6 import("//build/config/sanitizers/sanitizers.gni") |
| 7 import("//build/config/zip.gni") | 7 import("//build/config/zip.gni") |
| 8 import("//third_party/ijar/ijar.gni") | 8 import("//third_party/ijar/ijar.gni") |
| 9 | 9 |
| 10 assert(is_android) | 10 assert(is_android) |
| (...skipping 1917 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1928 } | 1928 } |
| 1929 } | 1929 } |
| 1930 | 1930 |
| 1931 template("copy_ex") { | 1931 template("copy_ex") { |
| 1932 set_sources_assignment_filter([]) | 1932 set_sources_assignment_filter([]) |
| 1933 action(target_name) { | 1933 action(target_name) { |
| 1934 inputs = [] | 1934 inputs = [] |
| 1935 sources = [] | 1935 sources = [] |
| 1936 forward_variables_from(invoker, | 1936 forward_variables_from(invoker, |
| 1937 [ | 1937 [ |
| 1938 "data", |
| 1938 "deps", | 1939 "deps", |
| 1939 "inputs", | 1940 "inputs", |
| 1940 "sources", | 1941 "sources", |
| 1941 "testonly", | 1942 "testonly", |
| 1942 "visibility", | 1943 "visibility", |
| 1943 ]) | 1944 ]) |
| 1944 script = "//build/android/gyp/copy_ex.py" | 1945 script = "//build/android/gyp/copy_ex.py" |
| 1945 | 1946 |
| 1946 depfile = "$target_gen_dir/$target_name.d" | 1947 depfile = "$target_gen_dir/$target_name.d" |
| 1947 outputs = [ | 1948 outputs = [ |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2209 | 2210 |
| 2210 args = [ | 2211 args = [ |
| 2211 "--depfile", | 2212 "--depfile", |
| 2212 rebase_path(depfile, root_build_dir), | 2213 rebase_path(depfile, root_build_dir), |
| 2213 "--script-output-path", | 2214 "--script-output-path", |
| 2214 rebase_path(generated_script, root_build_dir), | 2215 rebase_path(generated_script, root_build_dir), |
| 2215 ] | 2216 ] |
| 2216 args += test_runner_args | 2217 args += test_runner_args |
| 2217 } | 2218 } |
| 2218 } | 2219 } |
| OLD | NEW |