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

Side by Side Diff: tools/android/wrapper_script.gni

Issue 1663103004: Create wrapper scripts that set --output-directory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@adb_gdb-explicit
Patch Set: rename script and remove stale comment Created 4 years, 10 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
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 # Writes a script to root_out_dir/bin that passes --output-directory to the
6 # wrapped script, in addition to forwarding arguments.
7 template("wrapper_script") {
jbudorick 2016/02/08 16:14:18 er why is this in tools/android/ and not in build/
rmcilroy 2016/02/09 21:44:02 +1
agrieve 2016/02/10 04:02:05 Done.
8 action(target_name) {
9 _name = get_path_info(invoker.target, "name")
10 _output = "$root_out_dir/bin/$_name"
11
12 script = "//build/android/gyp/create_tool_wrapper.py"
13 outputs = [
14 _output,
15 ]
16
17 # The target isn't actually used by the script, but it's nice to have GN
18 # check that it exists.
19 inputs = [
20 invoker.target,
21 ]
22 args = [
23 "--output",
24 rebase_path(_output, root_build_dir),
25 "--target",
26 rebase_path(invoker.target, root_build_dir),
27 "--output-directory",
28 rebase_path(root_out_dir, root_build_dir),
29 ]
30 }
31 }
OLDNEW
« build/android/gyp/create_tool_wrapper.py ('K') | « tools/android/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698