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

Side by Side Diff: public/BUILD.gn

Issue 424503002: Add GN "resources" target for blink_resources GYP target. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 | no next file » | 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")
6
5 if (!is_android) { 7 if (!is_android) {
6 8
7 # GYP version: WebKit/public/blink.gyp:blink 9 # GYP version: WebKit/public/blink.gyp:blink
8 group("blink") { 10 group("blink") {
9 deps = [ 11 deps = [
10 ":blink_headers", 12 ":blink_headers",
11 ":blink_minimal", 13 ":blink_minimal",
12 "//third_party/WebKit/Source/web", 14 "//third_party/WebKit/Source/web",
13 ] 15 ]
14 } 16 }
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 "//third_party/WebKit/Source/devtools:devtools_frontend_resources", 68 "//third_party/WebKit/Source/devtools:devtools_frontend_resources",
67 ] 69 ]
68 } 70 }
69 71
70 # GYP version: WebKit/public/blink_devtools.gyp:blink_generate_devtools_grd 72 # GYP version: WebKit/public/blink_devtools.gyp:blink_generate_devtools_grd
71 group("blink_generate_devtools_grd") { 73 group("blink_generate_devtools_grd") {
72 deps = [ 74 deps = [
73 "//third_party/WebKit/Source/devtools:generate_devtools_grd", 75 "//third_party/WebKit/Source/devtools:generate_devtools_grd",
74 ] 76 ]
75 } 77 }
78
79 grit("resources") {
80 source = "blink_resources.grd"
81 outputs = [
82 "grit/blink_resources.h",
83 "blink_resources.rc",
84 "blink_resources.pak",
85 ]
86 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698