Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(652)

Side by Side Diff: google_update/BUILD.gn

Issue 853643004: Add GN files for google_update target. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698