Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1035)

Side by Side Diff: trunk/src/cloud_print/virtual_driver/win/virtual_driver.gypi

Issue 14824006: Revert 198820 "Move FileEnumerator to its own file, do some refa..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 17 matching lines...) Expand all
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 '<(DEPTH)/base/base.gyp:base',
39 'virtual_driver_lib<(virtual_driver_suffix)', 38 'virtual_driver_lib<(virtual_driver_suffix)',
40 ], 39 ],
41 }, 40 },
42 { 41 {
43 'target_name': 'gcp_portmon<(virtual_driver_suffix)', 42 'target_name': 'gcp_portmon<(virtual_driver_suffix)',
44 'type': 'loadable_module', 43 'type': 'loadable_module',
45 'sources': [ 44 'sources': [
46 'port_monitor/port_monitor.def', 45 'port_monitor/port_monitor.def',
47 'port_monitor/port_monitor_dll.cc', 46 'port_monitor/port_monitor_dll.cc',
48 '<(SHARED_INTERMEDIATE_DIR)/cloud_print/gcp_portmon<(virtual_driver_suff ix)_dll_version.rc', 47 '<(SHARED_INTERMEDIATE_DIR)/cloud_print/gcp_portmon<(virtual_driver_suff ix)_dll_version.rc',
49 ], 48 ],
50 'dependencies': [ 49 'dependencies': [
51 'gcp_portmon_lib<(virtual_driver_suffix)', 50 'gcp_portmon_lib<(virtual_driver_suffix)',
52 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', 51 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header',
53 '<(DEPTH)/cloud_print/cloud_print.gyp:cloud_print_version_resources', 52 '<(DEPTH)/cloud_print/cloud_print.gyp:cloud_print_version_resources',
54 ], 53 ],
55 'include_dirs': [ 54 'include_dirs': [
56 # To allow including "version.h" 55 # To allow including "version.h"
57 '<(SHARED_INTERMEDIATE_DIR)', 56 '<(SHARED_INTERMEDIATE_DIR)',
58 ], 57 ],
59 }, 58 },
60 ], 59 ],
61 } 60 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698