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

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

Issue 1882533004: 🐍 Fix GN deps needed by third_party/WebKit/Tools/Scripts/run-webkit-tests (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
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/symlink.gni") 6 import("//build/symlink.gni")
7 7
8 # GYP: //tools/android/md5sum/md5sum.gyp:md5sum 8 # GYP: //tools/android/md5sum/md5sum.gyp:md5sum
9 group("md5sum") { 9 group("md5sum") {
10 data_deps = [ 10 data_deps = [
(...skipping 28 matching lines...) Expand all
39 dist_dir = "$root_build_dir/md5sum_dist" 39 dist_dir = "$root_build_dir/md5sum_dist"
40 binary = "$root_build_dir/md5sum_bin" 40 binary = "$root_build_dir/md5sum_bin"
41 deps = [ 41 deps = [
42 ":md5sum_bin", 42 ":md5sum_bin",
43 ] 43 ]
44 } 44 }
45 45
46 # GYP: //tools/android/md5sum/md5sum.gyp:md5sum_bin_host 46 # GYP: //tools/android/md5sum/md5sum.gyp:md5sum_bin_host
47 binary_symlink("md5sum_bin_host") { 47 binary_symlink("md5sum_bin_host") {
48 binary_label = ":md5sum_bin($host_toolchain)" 48 binary_label = ":md5sum_bin($host_toolchain)"
49 output_name = "md5sum_bin_host"
49 } 50 }
50 } 51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698