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("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
6 | 6 |
7 grit("resources") { | 7 group("resources") { |
8 output_name = "ui_resources" | 8 deps = [ |
9 ":ui_resources", | |
10 ":ui_unscaled_resources", | |
11 ":webui_resources", | |
12 ] | |
13 } | |
14 | |
15 grit("ui_resources") { | |
9 source = "ui_resources.grd" | 16 source = "ui_resources.grd" |
10 } | 17 } |
18 | |
19 grit("ui_unscaled_resources") { | |
20 source = "ui_unscaled_resources.grd" | |
21 } | |
22 | |
23 grit("webui_resources") { | |
brettw
2014/05/02 23:56:06
Can you put this in a new BUILD.gn in the same dir
tfarina
2014/05/03 00:01:22
I can (I will). I just didn't initially because we
| |
24 source = "../webui/resources/webui_resources.grd" | |
25 } | |
OLD | NEW |