OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//chrome/version.gni") | 5 import("//chrome/version.gni") |
6 import("//third_party/kasko/kasko.gni") | 6 import("//third_party/kasko/kasko.gni") |
7 | 7 |
8 source_set("client") { | 8 source_set("client") { |
9 sources = [ | 9 sources = [ |
10 "chrome_watcher_main_api.cc", | 10 "chrome_watcher_main_api.cc", |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 inputs = [ | 50 inputs = [ |
51 "chrome_watcher.def", | 51 "chrome_watcher.def", |
52 ] | 52 ] |
53 deps = [ | 53 deps = [ |
54 ":chrome_watcher_resources", | 54 ":chrome_watcher_resources", |
55 ":client", | 55 ":client", |
56 ":kasko_util", | 56 ":kasko_util", |
57 "//base", | 57 "//base", |
58 "//base:base_static", | 58 "//base:base_static", |
59 "//build/config/sanitizers:deps", | 59 "//build/config/sanitizers:deps", |
| 60 "//chrome/common:metrics_constants_util_win", |
60 "//chrome/installer/util:with_no_strings", | 61 "//chrome/installer/util:with_no_strings", |
61 "//components/browser_watcher", | 62 "//components/browser_watcher", |
62 ] | 63 ] |
63 ldflags = [ "/DEF:" + rebase_path("chrome_watcher.def", root_build_dir) ] | 64 ldflags = [ "/DEF:" + rebase_path("chrome_watcher.def", root_build_dir) ] |
64 configs -= [ "//build/config/win:console" ] | 65 configs -= [ "//build/config/win:console" ] |
65 configs += [ "//build/config/win:windowed" ] | 66 configs += [ "//build/config/win:windowed" ] |
66 } | 67 } |
OLD | NEW |