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

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

Issue 1898273002: 🐢 Make create_native_executable_dist() mark its dir as data (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months 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
« no previous file with comments | « no previous file | build/config/android/rules.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | build/config/android/rules.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698