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

Unified Diff: chrome/installer/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: chrome/installer/BUILD.gn
diff --git a/chrome/installer/BUILD.gn b/chrome/installer/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..5b0b9f4a521077e4d642355476e5152884e2a1fc
--- /dev/null
+++ b/chrome/installer/BUILD.gn
@@ -0,0 +1,14 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//build/config/chrome_build.gni")
+
+# Meta-target that forwards to the installer of the correct type (if any).
+group("installer") {
+ if (is_linux && is_chrome_branded) {
+ deps = [
+ "//chrome/installer/linux",
+ ]
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698