| 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/chrome_build.gni") | |
| 6 | |
| 7 static_library("util") { | 5 static_library("util") { |
| 8 deps = [ | 6 deps = [ |
| 9 "//base", | 7 "//base", |
| 10 "//chrome:resources", | 8 "//chrome:resources", |
| 11 "//chrome:strings", | 9 "//chrome:strings", |
| 12 ] | 10 ] |
| 13 | 11 |
| 14 if (is_win) { | 12 if (is_win) { |
| 15 # TODO(GYP) installer_util on Windows. | 13 # TODO(GYP) installer_util on Windows. |
| 16 # This is a bit tricky. It seems that what's currently called | 14 # This is a bit tricky. It seems that what's currently called |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 | 190 |
| 193 args = [ | 191 args = [ |
| 194 "-i", | 192 "-i", |
| 195 rebase_path(grdfile, root_build_dir) + ":resources", | 193 rebase_path(grdfile, root_build_dir) + ":resources", |
| 196 "-n", | 194 "-n", |
| 197 "installer_util_strings", | 195 "installer_util_strings", |
| 198 "-o", | 196 "-o", |
| 199 rebase_path(outdir, root_build_dir), | 197 rebase_path(outdir, root_build_dir), |
| 200 ] | 198 ] |
| 201 } | 199 } |
| OLD | NEW |