OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 import("//build/toolchain/win/midl.gni") | |
6 | |
7 config("google_update_config") { | |
8 include_dirs = [ "$root_gen_dir" ] | |
Slava Chigrin
2015/01/14 19:08:17
Used root_gen_dir instead of target_gen_dir becaus
robertshield
2015/01/14 19:30:06
I don't really know how GN works, but if this is w
Slava Chigrin
2015/01/14 20:14:29
Done.
| |
9 } | |
10 | |
11 midl("google_update_idl") { | |
12 sources = [ | |
13 "google_update_idl.idl", | |
14 ] | |
15 } | |
16 | |
17 static_library("google_update") { | |
18 sources = [ | |
19 "$target_gen_dir/google_update_idl.h", | |
20 "$target_gen_dir/google_update_idl_i.c", | |
21 ] | |
22 | |
23 public_configs = [ ":google_update_config" ] | |
24 | |
25 deps = [ | |
26 ":google_update_idl", | |
27 ] | |
28 } | |
OLD | NEW |