forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.gn
30 lines (23 loc) · 792 Bytes
/
BUILD.gn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright 2018 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
assert(is_win)
import("//chrome/process_version_rc_template.gni")
process_version_rc_template("chrome_proxy_version") {
sources = [ "chrome_proxy.ver" ]
output = "$target_gen_dir/chrome_proxy_version.rc"
}
executable("chrome_proxy") {
deps = [
":chrome_proxy_version",
"//base",
"//chrome/app/version_assembly:chrome_exe_manifest",
]
data_deps = [ "//chrome/app/version_assembly:version_assembly_manifest" ]
sources = [ "chrome_proxy_main_win.cc" ]
configs -= [
"//build/config/compiler:cet_shadow_stack",
"//build/config/win:console",
]
configs += [ "//build/config/win:windowed" ]
}