| # 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") { |
| # We only make Linux installers for 64-bit desktop and CrOS. |
| if (is_linux && is_chrome_branded && target_cpu == "x64") { |
| deps = [ |
| "//chrome/installer/linux", |
| ] |
| } |
| |
| if (is_mac) { |
| deps = [ |
| "//chrome/installer/mac", |
| ] |
| } |
| } |