summaryrefslogtreecommitdiffstats
path: root/chrome/installer/BUILD.gn
blob: d8f7fa8dbfb4724e9b062b64395f4e7218b05dfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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") {
  # TODO(GYP): Get the 32-bit build to work.
  if (is_desktop_linux && is_chrome_branded && target_cpu == "x64") {
    deps = [
      "//chrome/installer/linux",
    ]
  }
}