| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |