| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |