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

Unified Diff: public/BUILD.gn

Issue 1351203002: Make deps of GN groups public. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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/platform/BUILD.gn ('k') | no next file » | 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 fcf1b84b6116bac6e00e80e61e55d869a78288fb..73aefaf25e6ae02af0e5d09015ba64db418f7c21 100644
--- a/public/BUILD.gn
+++ b/public/BUILD.gn
@@ -17,7 +17,7 @@ if (is_android) {
# GYP version: WebKit/public/blink.gyp:blink
group("blink") {
- deps = [
+ public_deps = [
":blink_headers",
":blink_minimal",
"//third_party/WebKit/Source/web",
@@ -32,14 +32,14 @@ group("blink") {
#
# GYP version: WebKit/public/blink.gyp:blink_minimal
group("blink_minimal") {
- deps = [
+ public_deps = [
"//third_party/WebKit/Source/platform:blink_common",
]
}
# GYP version: WebKit/public/blink.gyp:blink_test_support
group("test_support") {
- deps = [
+ public_deps = [
"//third_party/WebKit/Source/web:test_support",
]
}
@@ -49,7 +49,7 @@ group("all_blink") {
# This includes some test targets. Don't link into production!
testonly = true
- deps = [
+ public_deps = [
"//third_party/WebKit/Source/core",
"//third_party/WebKit/Source/modules",
"//third_party/WebKit/Source/platform:heap_unittests",
@@ -61,7 +61,7 @@ group("all_blink") {
if (is_mac) {
# TODO(GYP): Re-enable this as soon as we can link Blink binaries on mac.
- deps -= [
+ public_deps -= [
"//third_party/WebKit/Source/platform:heap_unittests",
"//third_party/WebKit/Source/platform:platform_unittests",
"//third_party/WebKit/Source/web:webkit_unit_tests",
@@ -119,14 +119,14 @@ source_set("blink_headers") {
# GYP version: WebKit/public/blink_devtools.gyp:blink_devtools_frontend_resources
group("blink_devtools_frontend_resources") {
- deps = [
+ public_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 = [
+ public_deps = [
"//third_party/WebKit/Source/devtools:generate_devtools_grd",
]
}
« no previous file with comments | « Source/platform/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698