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 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 Loading... |
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 } |
OLD | NEW |