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

Side by Side Diff: tools/android/forwarder2/BUILD.gn

Issue 1236503002: GN: Use lib.unstripped rather than lib.stripped. Add a toolchain.gni (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn15
Patch Set: add comment Created 5 years, 4 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 | « third_party/cython/rules.gni ('k') | tools/android/md5sum/BUILD.gn » ('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 # GYP: //tools/android/forwarder2/forwarder.gyp:forwarder2 5 # GYP: //tools/android/forwarder2/forwarder.gyp:forwarder2
6 group("forwarder2") { 6 group("forwarder2") {
7 datadeps = [ 7 datadeps = [
8 ":host_forwarder($host_toolchain)", 8 ":host_forwarder($host_toolchain)",
9 ":host_forwarder_copy($host_toolchain)", 9 ":host_forwarder_copy($host_toolchain)",
10 ":device_forwarder($default_toolchain)", 10 ":device_forwarder($default_toolchain)",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 "//tools/android/common", 45 "//tools/android/common",
46 ] 46 ]
47 datadeps = [ 47 datadeps = [
48 "//build/android/pylib/device/commands", 48 "//build/android/pylib/device/commands",
49 ] 49 ]
50 } 50 }
51 51
52 # GYP: //tools/android/forwarder2/forwarder.gyp:forwarder2 52 # GYP: //tools/android/forwarder2/forwarder.gyp:forwarder2
53 create_native_executable_dist("device_forwarder_prepare_dist") { 53 create_native_executable_dist("device_forwarder_prepare_dist") {
54 dist_dir = "$root_build_dir/forwarder_dist" 54 dist_dir = "$root_build_dir/forwarder_dist"
55 binary = "$root_build_dir/exe.stripped/device_forwarder" 55 binary = "$root_build_dir/device_forwarder"
56 deps = [ 56 deps = [
57 ":device_forwarder", 57 ":device_forwarder",
58 ] 58 ]
59 } 59 }
60 } 60 }
61 61
62 if (current_toolchain != default_toolchain) { 62 if (current_toolchain != default_toolchain) {
63 # GYP: //tools/android/forwarder2/forwarder.gyp:host_forwarder 63 # GYP: //tools/android/forwarder2/forwarder.gyp:host_forwarder
64 executable("host_forwarder") { 64 executable("host_forwarder") {
65 sources = [ 65 sources = [
(...skipping 29 matching lines...) Expand all
95 "$root_out_dir/host_forwarder", 95 "$root_out_dir/host_forwarder",
96 ] 96 ]
97 outputs = [ 97 outputs = [
98 "$root_build_dir/host_forwarder", 98 "$root_build_dir/host_forwarder",
99 ] 99 ]
100 deps = [ 100 deps = [
101 ":host_forwarder", 101 ":host_forwarder",
102 ] 102 ]
103 } 103 }
104 } 104 }
OLDNEW
« no previous file with comments | « third_party/cython/rules.gni ('k') | tools/android/md5sum/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698