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