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

Side by Side Diff: public/BUILD.gn

Issue 466593002: GN: Fixes for component build (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 | « Source/web/BUILD.gn ('k') | 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") 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") {
11 deps = [ 11 deps = [
12 ":blink_headers", 12 ":blink_headers",
13 ":blink_minimal", 13 ":blink_minimal",
14 "//third_party/WebKit/Source/web", 14 "//third_party/WebKit/Source/web",
15 "//third_party/WebKit/Source/platform",
15 ] 16 ]
16 } 17 }
17 18
18 # This target provides a minimal set of Blink APIs such as WebString to use in 19 # This target provides a minimal set of Blink APIs such as WebString to use in
19 # places that cannot link against the full Blink library. FIXME: We really 20 # places that cannot link against the full Blink library. FIXME: We really
20 # shouldn't have this at all and should instead remove all uses of Blink's API 21 # shouldn't have this at all and should instead remove all uses of Blink's API
21 # types from places that can't link against Blink. crbug.com/248653 22 # types from places that can't link against Blink. crbug.com/248653
22 # 23 #
23 # GYP version: WebKit/public/blink.gyp:blink_minimal 24 # GYP version: WebKit/public/blink.gyp:blink_minimal
24 group("blink_minimal") { 25 group("blink_minimal") {
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 grit("resources") { 81 grit("resources") {
81 output_dir = "$root_gen_dir/blink/public/resources" 82 output_dir = "$root_gen_dir/blink/public/resources"
82 use_qualified_include = true 83 use_qualified_include = true
83 source = "blink_resources.grd" 84 source = "blink_resources.grd"
84 outputs = [ 85 outputs = [
85 "grit/blink_resources.h", 86 "grit/blink_resources.h",
86 "blink_resources.rc", 87 "blink_resources.rc",
87 "blink_resources.pak", 88 "blink_resources.pak",
88 ] 89 ]
89 } 90 }
OLDNEW
« no previous file with comments | « Source/web/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698