| 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("//build/util/process_version_rc_template.gni") |
| 6 | 6 |
| 7 assert(is_win) | 7 assert(is_win) |
| 8 | 8 |
| 9 group("port_monitor") { | 9 group("port_monitor") { |
| 10 public_deps = [ | 10 public_deps = [ |
| 11 ":port_monitor_dll", | 11 ":port_monitor_dll", |
| 12 ] | 12 ] |
| 13 } | 13 } |
| 14 | 14 |
| 15 shared_library("port_monitor_dll") { | 15 shared_library("port_monitor_dll") { |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 | 98 |
| 99 process_version_rc_template("resources") { | 99 process_version_rc_template("resources") { |
| 100 sources = [ | 100 sources = [ |
| 101 "../gcp_portmon_dll.ver", | 101 "../gcp_portmon_dll.ver", |
| 102 ] | 102 ] |
| 103 | 103 |
| 104 # Note: target_gen_dir will be different for each toolchain so the output | 104 # Note: target_gen_dir will be different for each toolchain so the output |
| 105 # name doesn't need mangling. | 105 # name doesn't need mangling. |
| 106 output = "$target_gen_dir/gcp_portmon_dll.rc" | 106 output = "$target_gen_dir/gcp_portmon_dll.rc" |
| 107 } | 107 } |
| OLD | NEW |