summaryrefslogtreecommitdiffstats
path: root/google_update/BUILD.gn
blob: 5d57f607f02944000bed7fb27e758fea1dbb0b35 (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
# 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/toolchain/win/midl.gni")

config("google_update_config") {
  # Chromium uses include paths like "google_update/google_update_idl.h",
  # so add root_gen_dir, rather then target_gen_dir to include dirs.
  include_dirs = [ "$root_gen_dir" ]
}

midl("google_update_idl") {
  sources = [
    "google_update_idl.idl",
  ]
}

static_library("google_update") {
  sources = [
    "$target_gen_dir/google_update_idl.h",
    "$target_gen_dir/google_update_idl_i.c",
  ]

  public_configs = [ ":google_update_config" ]

  deps = [
    ":google_update_idl",
  ]
}