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

Side by Side Diff: public/BUILD.gn

Issue 431883002: Use a qualified path to blink resources, blink part. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 6 years, 4 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 | public/blink_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 if (!is_android) { 7 if (!is_android) {
8 8
9 # GYP version: WebKit/public/blink.gyp:blink 9 # GYP version: WebKit/public/blink.gyp:blink
10 group("blink") { 10 group("blink") {
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 ] 69 ]
70 } 70 }
71 71
72 # GYP version: WebKit/public/blink_devtools.gyp:blink_generate_devtools_grd 72 # GYP version: WebKit/public/blink_devtools.gyp:blink_generate_devtools_grd
73 group("blink_generate_devtools_grd") { 73 group("blink_generate_devtools_grd") {
74 deps = [ 74 deps = [
75 "//third_party/WebKit/Source/devtools:generate_devtools_grd", 75 "//third_party/WebKit/Source/devtools:generate_devtools_grd",
76 ] 76 ]
77 } 77 }
78 78
79 # GYP version: WebKit/public/blink_resources.gyp:blink_resources
79 grit("resources") { 80 grit("resources") {
81 output_dir = "$root_gen_dir/blink/public/resources"
tfarina 2014/07/31 18:29:36 that is right, otherwise it will expand to gen/thi
82 # TODO(thakis): Add this once https://codereview.chromium.org/430083002 has
83 # landed.
84 # use_qualified_include = true
80 source = "blink_resources.grd" 85 source = "blink_resources.grd"
81 outputs = [ 86 outputs = [
82 "grit/blink_resources.h", 87 "grit/blink_resources.h",
83 "blink_resources.rc", 88 "blink_resources.rc",
84 "blink_resources.pak", 89 "blink_resources.pak",
85 ] 90 ]
86 } 91 }
OLDNEW
« no previous file with comments | « no previous file | public/blink_resources.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698