| 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/toolchain/toolchain.gni") | 5 import("//build/toolchain/toolchain.gni") |
| 6 import("//services/service_manager/public/constants.gni") | 6 import("//services/service_manager/public/constants.gni") |
| 7 | 7 |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 import("//build/config/zip.gni") | 10 import("//build/config/zip.gni") |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 if (defined(invoker.lib_dirs)) { | 87 if (defined(invoker.lib_dirs)) { |
| 88 lib_dirs = invoker.lib_dirs | 88 lib_dirs = invoker.lib_dirs |
| 89 } | 89 } |
| 90 if (defined(invoker.libs)) { | 90 if (defined(invoker.libs)) { |
| 91 libs = invoker.libs | 91 libs = invoker.libs |
| 92 } | 92 } |
| 93 | 93 |
| 94 data_deps = service_data_deps | 94 data_deps = service_data_deps |
| 95 | 95 |
| 96 deps = [ | 96 deps = [ |
| 97 "//build/config/sanitizers:deps", |
| 97 "//services/service_manager/public/cpp/standalone_service:main", | 98 "//services/service_manager/public/cpp/standalone_service:main", |
| 98 ] | 99 ] |
| 99 | 100 |
| 100 deps += service_deps | 101 deps += service_deps |
| 101 if (defined(invoker.public_deps)) { | 102 if (defined(invoker.public_deps)) { |
| 102 public_deps = invoker.public_deps | 103 public_deps = invoker.public_deps |
| 103 } | 104 } |
| 104 if (defined(invoker.all_dependent_configs)) { | 105 if (defined(invoker.all_dependent_configs)) { |
| 105 all_dependent_configs = invoker.all_dependent_configs | 106 all_dependent_configs = invoker.all_dependent_configs |
| 106 } | 107 } |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 data_deps = service_data_deps | 148 data_deps = service_data_deps |
| 148 | 149 |
| 149 sources = [ | 150 sources = [ |
| 150 "${root_out_dir}/${executable_name}", | 151 "${root_out_dir}/${executable_name}", |
| 151 ] | 152 ] |
| 152 outputs = [ | 153 outputs = [ |
| 153 "${root_out_dir}/${packages_directory}/${base_target_name}/${executable_na
me}", | 154 "${root_out_dir}/${packages_directory}/${base_target_name}/${executable_na
me}", |
| 154 ] | 155 ] |
| 155 } | 156 } |
| 156 } | 157 } |
| OLD | NEW |