| 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': [ |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 # GN version: //cloud_print/virtual_driver/win/port_monitor | 44 # GN version: //cloud_print/virtual_driver/win/port_monitor |
| 45 'target_name': 'gcp_portmon<(virtual_driver_suffix)', | 45 'target_name': 'gcp_portmon<(virtual_driver_suffix)', |
| 46 'type': 'loadable_module', | 46 'type': 'loadable_module', |
| 47 'sources': [ | 47 'sources': [ |
| 48 'port_monitor/port_monitor.def', | 48 'port_monitor/port_monitor.def', |
| 49 'port_monitor/port_monitor_dll.cc', | 49 'port_monitor/port_monitor_dll.cc', |
| 50 '<(SHARED_INTERMEDIATE_DIR)/cloud_print/gcp_portmon<(virtual_driver_suff
ix)_dll_version.rc', | 50 '<(SHARED_INTERMEDIATE_DIR)/cloud_print/gcp_portmon<(virtual_driver_suff
ix)_dll_version.rc', |
| 51 ], | 51 ], |
| 52 'dependencies': [ | 52 'dependencies': [ |
| 53 'gcp_portmon_lib<(virtual_driver_suffix)', | 53 'gcp_portmon_lib<(virtual_driver_suffix)', |
| 54 '<(DEPTH)/chrome/common_constants.gyp:version_header', | 54 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', |
| 55 '<(DEPTH)/cloud_print/cloud_print_resources.gyp:cloud_print_version_reso
urces', | 55 '<(DEPTH)/cloud_print/cloud_print_resources.gyp:cloud_print_version_reso
urces', |
| 56 ], | 56 ], |
| 57 'include_dirs': [ | 57 'include_dirs': [ |
| 58 # To allow including "version.h" | 58 # To allow including "version.h" |
| 59 '<(SHARED_INTERMEDIATE_DIR)', | 59 '<(SHARED_INTERMEDIATE_DIR)', |
| 60 ], | 60 ], |
| 61 }, | 61 }, |
| 62 ], | 62 ], |
| 63 } | 63 } |
| OLD | NEW |