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

Unified Diff: public/BUILD.gn

Issue 329993006: Implement main blink target in GN. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/wtf/BUILD.gn ('k') | public/all.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/BUILD.gn
diff --git a/public/BUILD.gn b/public/BUILD.gn
index 7525f281a828de456522c693643621da7563ba8b..8334c51bcc1a6e5f6dc88e116bc71c68e0422750 100644
--- a/public/BUILD.gn
+++ b/public/BUILD.gn
@@ -4,6 +4,37 @@
if (!is_android) {
+# GYP version: WebKit/public/blink.gyp:blink
+group("blink") {
+ deps = [
+ ":blink_headers",
+ ":blink_minimal",
+ "//third_party/WebKit/Source/platform",
+ "//third_party/WebKit/Source/web",
+ ]
+}
+
+# This target provides a minimal set of Blink APIs such as WebString to use in
+# places that cannot link against the full Blink library. FIXME: We really
+# shouldn't have this at all and should instead remove all uses of Blink's API
+# types from places that can't link against Blink. crbug.com/248653
+#
+# GYP version: WebKit/public/blink.gyp:blink_minimal
+group("blink_minimal") {
+ deps = [
+ "//third_party/WebKit/Source/platform:blink_common",
+ ]
+}
+
+# TODO(GYP) enable this when web:test_support exists.
+# GYP version: WebKit/public/blink.gyp:blink_test_support
+#group("test_support") {
+# deps = [
+# "//third_party/WebKit/Source/web:test_support",
+# ]
+#}
+
+# GYP version: WebKit/public/all.gyp:all_blink
group("all_blink") {
deps = [
"//third_party/WebKit/Source/core",
@@ -14,7 +45,7 @@ group("all_blink") {
]
}
-}
+} # !is_android
config("blink_headers_config") {
include_dirs = [ ".." ]
@@ -26,12 +57,14 @@ source_set("blink_headers") {
direct_dependent_configs = [ ":blink_headers_config" ]
}
+# GYP version: WebKit/public/blink_devtools.gyp:blink_devtools_frontend_resources
group("blink_devtools_frontend_resources") {
deps = [
"//third_party/WebKit/Source/devtools:devtools_frontend_resources",
]
}
+# GYP version: WebKit/public/blink_devtools.gyp:blink_generate_devtools_grd
group("blink_generate_devtools_grd") {
deps = [
"//third_party/WebKit/Source/devtools:generate_devtools_grd",
« no previous file with comments | « Source/wtf/BUILD.gn ('k') | public/all.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698