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

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

Issue 1774403002: Add missing android files to GN runtime_deps (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 | build/config/android/internal_rules.gni » ('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 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 _rebased_strip_bin, 71 _rebased_strip_bin,
72 "--strip-unneeded", 72 "--strip-unneeded",
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.py", 82 "devil_chromium.py",
82 "//third_party/catapult/catapult_base/", 83 "//third_party/catapult/catapult_base/",
83 "//third_party/catapult/dependency_manager/", 84 "//third_party/catapult/dependency_manager/",
84 "//third_party/catapult/devil/", 85 "//third_party/catapult/devil/",
85 ] 86 ]
86 } 87 }
87 88
88 group("test_runner_py") { 89 group("test_runner_py") {
89 data = [ 90 data = [
90 "test_runner.py", 91 "test_runner.py",
(...skipping 25 matching lines...) Expand all
116 _target_name = get_path_info(script, "name") + "_wrapper" 117 _target_name = get_path_info(script, "name") + "_wrapper"
117 _wrapper_targets += [ ":$_target_name" ] 118 _wrapper_targets += [ ":$_target_name" ]
118 wrapper_script(_target_name) { 119 wrapper_script(_target_name) {
119 target = script 120 target = script
120 } 121 }
121 } 122 }
122 123
123 group("wrapper_scripts") { 124 group("wrapper_scripts") {
124 deps = _wrapper_targets 125 deps = _wrapper_targets
125 } 126 }
OLDNEW
« no previous file with comments | « no previous file | build/config/android/internal_rules.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698