| 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("//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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 } | 56 } |
| 57 | 57 |
| 58 shared_library("chrome_watcher") { | 58 shared_library("chrome_watcher") { |
| 59 sources = [ | 59 sources = [ |
| 60 "chrome_watcher_main.cc", | 60 "chrome_watcher_main.cc", |
| 61 ] | 61 ] |
| 62 inputs = [ | 62 inputs = [ |
| 63 "chrome_watcher.def", | 63 "chrome_watcher.def", |
| 64 ] | 64 ] |
| 65 deps = [ | 65 deps = [ |
| 66 ":chrome_watcher_resources", | 66 #":chrome_watcher_resources", |
| 67 ":client", | 67 ":client", |
| 68 ":kasko_util", | 68 ":kasko_util", |
| 69 "//base", | 69 "//base", |
| 70 "//base:base_static", | 70 "//base:base_static", |
| 71 "//build/config/sanitizers:deps", | 71 "//build/config/sanitizers:deps", |
| 72 "//chrome/common:metrics_constants_util_win", | 72 "//chrome/common:metrics_constants_util_win", |
| 73 "//chrome/installer/util:with_no_strings", | 73 "//chrome/installer/util:with_no_strings", |
| 74 "//components/browser_watcher", | 74 "//components/browser_watcher", |
| 75 ] | 75 ] |
| 76 ldflags = [ "/DEF:" + rebase_path("chrome_watcher.def", root_build_dir) ] | 76 ldflags = [ "/DEF:" + rebase_path("chrome_watcher.def", root_build_dir) ] |
| 77 configs -= [ "//build/config/win:console" ] | 77 configs -= [ "//build/config/win:console" ] |
| 78 configs += [ "//build/config/win:windowed" ] | 78 configs += [ "//build/config/win:windowed" ] |
| 79 } | 79 } |
| OLD | NEW |