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("//build/config/win/manifest.gni") | 5 import("//build/config/win/manifest.gni") |
6 import("//chrome/version.gni") | 6 import("//chrome/version.gni") |
7 | 7 |
8 assert(is_win) | 8 assert(is_win) |
9 | 9 |
10 executable("cloud_print_service") { | 10 executable("cloud_print_service") { |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 configs -= [ "//build/config/win:console" ] | 72 configs -= [ "//build/config/win:console" ] |
73 configs += [ | 73 configs += [ |
74 "//build/config/win:windowed", | 74 "//build/config/win:windowed", |
75 ":cloud_print_service_config_warnings", | 75 ":cloud_print_service_config_warnings", |
76 ] | 76 ] |
77 | 77 |
78 deps = [ | 78 deps = [ |
79 ":config_version", | 79 ":config_version", |
80 ":exe_manifest", | 80 ":exe_manifest", |
81 "//cloud_print/common:install_utils", | 81 "//cloud_print/common:install_utils", |
| 82 "//cloud_print/service:lib", |
82 "//cloud_print/service:resources", | 83 "//cloud_print/service:resources", |
83 "//cloud_print/service:lib", | |
84 ] | 84 ] |
85 | 85 |
86 libs = [ "secur32.lib" ] | 86 libs = [ "secur32.lib" ] |
87 } | 87 } |
88 | 88 |
89 process_version("config_version") { | 89 process_version("config_version") { |
90 template_file = chrome_version_rc_template | 90 template_file = chrome_version_rc_template |
91 sources = [ | 91 sources = [ |
92 "cloud_print_service_config_exe.ver", | 92 "cloud_print_service_config_exe.ver", |
93 ] | 93 ] |
94 output = "$target_gen_dir/cloud_print_service_config_version.rc" | 94 output = "$target_gen_dir/cloud_print_service_config_version.rc" |
95 } | 95 } |
96 | 96 |
97 executable("cloud_print_service_setup") { | 97 executable("cloud_print_service_setup") { |
98 sources = [ | 98 sources = [ |
99 "installer.cc", | 99 "installer.cc", |
100 "installer.h", | 100 "installer.h", |
101 ] | 101 ] |
102 | 102 |
103 configs -= [ "//build/config/win:console" ] | 103 configs -= [ "//build/config/win:console" ] |
104 configs += [ "//build/config/win:windowed" ] | 104 configs += [ "//build/config/win:windowed" ] |
105 | 105 |
106 deps = [ | 106 deps = [ |
107 ":exe_manifest", | 107 ":exe_manifest", |
108 "//cloud_print/common:install_utils", | 108 "//cloud_print/common:install_utils", |
| 109 "//cloud_print/service:lib", |
109 "//cloud_print/service:resources", | 110 "//cloud_print/service:resources", |
110 "//cloud_print/service:lib", | |
111 ] | 111 ] |
112 | 112 |
113 libs = [ "secur32.lib" ] | 113 libs = [ "secur32.lib" ] |
114 } | 114 } |
OLD | NEW |