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: build/android/BUILD.gn

Issue 1932063003: [Android] Add proguard.jar to build/android:test_runner_py data. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 # Create or update the API versions cache if necessary by running a 10 # Create or update the API versions cache if necessary by running a
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 data = sources + [ 94 data = sources + [
95 "devil_chromium.json", 95 "devil_chromium.json",
96 "pylib/gtest/filter/", 96 "pylib/gtest/filter/",
97 "//third_party/android_tools/sdk/build-tools/23.0.1/aapt", 97 "//third_party/android_tools/sdk/build-tools/23.0.1/aapt",
98 "//third_party/android_tools/sdk/build-tools/23.0.1/dexdump", 98 "//third_party/android_tools/sdk/build-tools/23.0.1/dexdump",
99 "//third_party/android_tools/sdk/build-tools/23.0.1/lib/libc++.so", 99 "//third_party/android_tools/sdk/build-tools/23.0.1/lib/libc++.so",
100 "//third_party/android_tools/sdk/build-tools/23.0.1/split-select", 100 "//third_party/android_tools/sdk/build-tools/23.0.1/split-select",
101 "//third_party/android_tools/sdk/platform-tools/adb", 101 "//third_party/android_tools/sdk/platform-tools/adb",
102 "//third_party/catapult/third_party/gsutil/", 102 "//third_party/catapult/third_party/gsutil/",
103 "//third_party/catapult/devil/devil/devil_dependencies.json", 103 "//third_party/catapult/devil/devil/devil_dependencies.json",
104 "//third_party/proguard/lib/proguard.jar",
104 ] 105 ]
105 data_deps = [ 106 data_deps = [
106 "//tools/swarming_client:isolate_py", 107 "//tools/swarming_client:isolate_py",
107 ] 108 ]
108 } 109 }
109 110
110 # Create wrapper scripts in out/bin that takes care of setting the 111 # Create wrapper scripts in out/bin that takes care of setting the
111 # --output-directory. 112 # --output-directory.
112 _scripts_to_wrap = [ 113 _scripts_to_wrap = [
113 # TODO(agrieve): Once GYP is no more, delete the checked-in adb_gdb_* scripts 114 # TODO(agrieve): Once GYP is no more, delete the checked-in adb_gdb_* scripts
(...skipping 13 matching lines...) Expand all
127 _target_name = get_path_info(script, "name") + "_wrapper" 128 _target_name = get_path_info(script, "name") + "_wrapper"
128 _wrapper_targets += [ ":$_target_name" ] 129 _wrapper_targets += [ ":$_target_name" ]
129 wrapper_script(_target_name) { 130 wrapper_script(_target_name) {
130 target = script 131 target = script
131 } 132 }
132 } 133 }
133 134
134 group("wrapper_scripts") { 135 group("wrapper_scripts") {
135 deps = _wrapper_targets 136 deps = _wrapper_targets
136 } 137 }
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