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 # GYP version: WebKit/public/blink.gyp:blink | 7 # GYP version: WebKit/public/blink.gyp:blink |
8 group("blink") { | 8 group("blink") { |
9 deps = [ | 9 deps = [ |
10 ":blink_headers", | 10 ":blink_headers", |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 | 50 |
51 config("blink_headers_config") { | 51 config("blink_headers_config") { |
52 include_dirs = [ ".." ] | 52 include_dirs = [ ".." ] |
53 } | 53 } |
54 | 54 |
55 # Depend on this target to use public blink API headers for things like enums | 55 # Depend on this target to use public blink API headers for things like enums |
56 # and public structures without actually linking against any Blink libraries. | 56 # and public structures without actually linking against any Blink libraries. |
57 source_set("blink_headers") { | 57 source_set("blink_headers") { |
58 direct_dependent_configs = [ | 58 direct_dependent_configs = [ |
59 ":blink_headers_config", | 59 ":blink_headers_config", |
| 60 # Blink exposes icu headers in the public API. |
| 61 "//third_party/icu:icu_config", |
60 # Blink exposes NPAPI headers in the public API. | 62 # Blink exposes NPAPI headers in the public API. |
61 "//third_party/npapi:npapi_config", | 63 "//third_party/npapi:npapi_config", |
62 ] | 64 ] |
63 } | 65 } |
64 | 66 |
65 # GYP version: WebKit/public/blink_devtools.gyp:blink_devtools_frontend_resource
s | 67 # GYP version: WebKit/public/blink_devtools.gyp:blink_devtools_frontend_resource
s |
66 group("blink_devtools_frontend_resources") { | 68 group("blink_devtools_frontend_resources") { |
67 deps = [ | 69 deps = [ |
68 "//third_party/WebKit/Source/devtools:devtools_frontend_resources", | 70 "//third_party/WebKit/Source/devtools:devtools_frontend_resources", |
69 ] | 71 ] |
(...skipping 10 matching lines...) Expand all Loading... |
80 grit("resources") { | 82 grit("resources") { |
81 output_dir = "$root_gen_dir/blink/public/resources" | 83 output_dir = "$root_gen_dir/blink/public/resources" |
82 use_qualified_include = true | 84 use_qualified_include = true |
83 source = "blink_resources.grd" | 85 source = "blink_resources.grd" |
84 outputs = [ | 86 outputs = [ |
85 "grit/blink_resources.h", | 87 "grit/blink_resources.h", |
86 "blink_resources.rc", | 88 "blink_resources.rc", |
87 "blink_resources.pak", | 89 "blink_resources.pak", |
88 ] | 90 ] |
89 } | 91 } |
OLD | NEW |