summaryrefslogtreecommitdiff
path: root/chromium/chrome/credential_provider/BUILD.gn
blob: 9363136f6b61dd9eb29b3937d711852ed3f48903 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Copyright 2018 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.

# Make the GCP installer.
action("gcp_installer") {
  script = "build/make_setup.py"

  outputs = [
    "$root_out_dir/gcp_installer.exe",
  ]

  args = [
    rebase_path("//", root_build_dir),
    rebase_path(".", root_build_dir),
    rebase_path(root_out_dir, root_build_dir),
    rebase_path(target_gen_dir, root_build_dir),
  ]

  deps = [
    "//chrome/credential_provider/eventlog:gcp_eventlog_provider",
    "//chrome/credential_provider/gaiacp:gaia1_0",
    "//chrome/credential_provider/setup:gcp_setup",
    "//third_party/lzma_sdk/Util/SfxSetup:7zS2",
  ]
}

group("credential_provider") {
  deps = [
    ":gcp_installer",
  ]
}