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

Side by Side Diff: build/android/BUILD.gn

Issue 1783603003: [Android] Add SDK binary tools to devil_py data. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 | no next file » | 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/rules.gni") 5 import("//build/config/android/rules.gni")
6 import("//third_party/ijar/ijar.gni") 6 import("//third_party/ijar/ijar.gni")
7 7
8 sun_tools_jar_path = "$root_gen_dir/sun_tools_jar/tools.jar" 8 sun_tools_jar_path = "$root_gen_dir/sun_tools_jar/tools.jar"
9 9
10 action("find_sun_tools_jar") { 10 action("find_sun_tools_jar") {
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 "-o", 73 "-o",
74 _rebased_output_so, 74 _rebased_output_so,
75 _rebased_input_so, 75 _rebased_input_so,
76 ] 76 ]
77 } 77 }
78 78
79 group("devil_py") { 79 group("devil_py") {
80 data = [ 80 data = [
81 "devil_chromium.json", 81 "devil_chromium.json",
82 "devil_chromium.py", 82 "devil_chromium.py",
83 "//third_party/catapult/catapult_base/", 83 "//third_party/android_tools/sdk/build-tools/23.0.0/aapt",
84 "//third_party/catapult/dependency_manager/", 84 "//third_party/android_tools/sdk/build-tools/23.0.0/dexdump",
85 "//third_party/catapult/devil/", 85 "//third_party/android_tools/sdk/build-tools/23.0.0/split-select",
86 "//third_party/android_tools/sdk/platform-tools/adb",
87 "//third_party/catapult/catapult_base/catapult_base/",
88 "//third_party/catapult/dependency_manager/dependency_manager/",
89 "//third_party/catapult/third_party/gsutil/",
90 "//third_party/catapult/devil/devil/",
86 ] 91 ]
87 } 92 }
88 93
89 group("test_runner_py") { 94 group("test_runner_py") {
90 data = [ 95 data = [
91 "test_runner.py", 96 "test_runner.py",
92 "pylib/", 97 "pylib/",
93 "//build/util/lib/common/", 98 "//build/util/lib/common/",
94 ] 99 ]
95 data_deps = [ 100 data_deps = [
(...skipping 21 matching lines...) Expand all
117 _target_name = get_path_info(script, "name") + "_wrapper" 122 _target_name = get_path_info(script, "name") + "_wrapper"
118 _wrapper_targets += [ ":$_target_name" ] 123 _wrapper_targets += [ ":$_target_name" ]
119 wrapper_script(_target_name) { 124 wrapper_script(_target_name) {
120 target = script 125 target = script
121 } 126 }
122 } 127 }
123 128
124 group("wrapper_scripts") { 129 group("wrapper_scripts") {
125 deps = _wrapper_targets 130 deps = _wrapper_targets
126 } 131 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698