Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(259)

Side by Side Diff: ui/resources/BUILD.gn

Issue 265953004: GN: Add missing grit targets for ui/resources/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | ui/resources/ui_resources.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 }
OLDNEW
« no previous file with comments | « no previous file | ui/resources/ui_resources.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698