| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'include_dirs': [ | 10 'include_dirs': [ |
| 11 '<(DEPTH)', | 11 '<(DEPTH)', |
| 12 ], | 12 ], |
| 13 'libraries': [ | 13 'libraries': [ |
| 14 'userenv.lib', | 14 'userenv.lib', |
| 15 ], | 15 ], |
| 16 }, | 16 }, |
| 17 'targets' : [ | 17 'targets' : [ |
| 18 { | 18 { |
| 19 'target_name': 'virtual_driver_lib<(virtual_driver_suffix)', | 19 'target_name': 'virtual_driver_lib<(virtual_driver_suffix)', |
| 20 'type': 'static_library', | 20 'type': 'static_library', |
| 21 'sources': [ | 21 'sources': [ |
| 22 '../virtual_driver_switches.cc', | 22 '../virtual_driver_switches.cc', |
| 23 '../virtual_driver_switches.h', | 23 '../virtual_driver_switches.h', |
| 24 'virtual_driver_consts.cc', | 24 'virtual_driver_consts.cc', |
| 25 'virtual_driver_consts.h', | 25 'virtual_driver_consts.h', |
| 26 'virtual_driver_helpers.cc', | 26 'virtual_driver_helpers.cc', |
| 27 'virtual_driver_helpers.h', | 27 'virtual_driver_helpers.h', |
| 28 ], | 28 ], |
| 29 }, | 29 }, |
| 30 { | 30 { |
| 31 'target_name': 'gcp_portmon_lib<(virtual_driver_suffix)', | 31 'target_name': 'gcp_portmon_lib<(virtual_driver_suffix)', |
| 32 'type': 'static_library', | 32 'type': 'static_library', |
| 33 'sources': [ | 33 'sources': [ |
| 34 'port_monitor/port_monitor.cc', | 34 'port_monitor/port_monitor.cc', |
| 35 'port_monitor/port_monitor.h', | 35 'port_monitor/port_monitor.h', |
| 36 ], | 36 ], |
| 37 'dependencies': [ | 37 'dependencies': [ |
| 38 'virtual_driver_lib<(virtual_driver_suffix)', | 38 'virtual_driver_lib<(virtual_driver_suffix)', |
| 39 ], | 39 ], |
| 40 }, | 40 }, |
| 41 { | 41 { |
| 42 'target_name': 'gcp_portmon<(virtual_driver_suffix)', | 42 'target_name': 'gcp_portmon<(virtual_driver_suffix)', |
| 43 'type': 'loadable_module', | 43 'type': 'loadable_module', |
| 44 'sources': [ | 44 'sources': [ |
| 45 'port_monitor/port_monitor.def', |
| 45 'port_monitor/port_monitor_dll.cc', | 46 'port_monitor/port_monitor_dll.cc', |
| 46 'virtual_driver_common_resources.rc', | 47 'virtual_driver_common_resources.rc', |
| 47 ], | 48 ], |
| 48 'dependencies': [ | 49 'dependencies': [ |
| 49 'gcp_portmon_lib<(virtual_driver_suffix)', | 50 'gcp_portmon_lib<(virtual_driver_suffix)', |
| 50 ], | 51 ], |
| 51 }, | 52 }, |
| 52 ], | 53 ], |
| 53 } | 54 } |
| OLD | NEW |