| 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/process_version_rc_template.gni") | 5 import("//chrome/process_version_rc_template.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "chrome_watcher.def", | 62 "chrome_watcher.def", |
| 63 ] | 63 ] |
| 64 deps = [ | 64 deps = [ |
| 65 ":chrome_watcher_resources", | 65 ":chrome_watcher_resources", |
| 66 ":client", | 66 ":client", |
| 67 ":kasko_util", | 67 ":kasko_util", |
| 68 "//base", | 68 "//base", |
| 69 "//base:base_static", | 69 "//base:base_static", |
| 70 "//build/config/sanitizers:deps", | 70 "//build/config/sanitizers:deps", |
| 71 "//chrome/common:metrics_constants_util_win", | 71 "//chrome/common:metrics_constants_util_win", |
| 72 "//chrome/installer/util:with_no_strings", | 72 "//chrome_elf:constants", |
| 73 "//components/browser_watcher", | 73 "//components/browser_watcher", |
| 74 ] | 74 ] |
| 75 ldflags = [ "/DEF:" + rebase_path("chrome_watcher.def", root_build_dir) ] | 75 ldflags = [ "/DEF:" + rebase_path("chrome_watcher.def", root_build_dir) ] |
| 76 configs -= [ "//build/config/win:console" ] | 76 configs -= [ "//build/config/win:console" ] |
| 77 configs += [ "//build/config/win:windowed" ] | 77 configs += [ "//build/config/win:windowed" ] |
| 78 } | 78 } |
| OLD | NEW |