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

Unified Diff: sandbox/BUILD.gn

Issue 1311543003: Add Linux build packaging targets to GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
Index: sandbox/BUILD.gn
diff --git a/sandbox/BUILD.gn b/sandbox/BUILD.gn
index 15fb62092f36b877a20df11d5a5319979ba7c308..6825a1d3b5620a1bb6d632463dab26cb3c4105e9 100644
--- a/sandbox/BUILD.gn
+++ b/sandbox/BUILD.gn
@@ -5,18 +5,18 @@
# Meta-target that forwards to the proper platform one.
group("sandbox") {
if (is_win) {
- deps = [
+ public_deps = [
"//sandbox/win:sandbox",
]
} else if (is_mac) {
# TODO(GYP): Make sandbox compile w/ 10.6 SDK.
if (false) {
- deps = [
+ public_deps = [
"//sandbox/mac:sandbox",
]
}
} else if (is_linux || is_android) {
- deps = [
+ public_deps = [
"//sandbox/linux:sandbox",
]
}

Powered by Google App Engine
This is Rietveld 408576698