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

Unified Diff: cloud_print/virtual_driver/win/virtual_driver.gypi

Issue 10505010: Root solution for src/cloud_print. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: cloud_print/virtual_driver/win/virtual_driver.gypi
diff --git a/cloud_print/virtual_driver/win/virtual_driver.gypi b/cloud_print/virtual_driver/win/virtual_driver.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..2367dbd329acffad8b091819ae6a91d672560a2b
--- /dev/null
+++ b/cloud_print/virtual_driver/win/virtual_driver.gypi
@@ -0,0 +1,53 @@
+# Copyright (c) 2012 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.
+
+{
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'target_defaults': {
+ 'include_dirs': [
+ '<(DEPTH)',
+ ],
+ 'libraries': [
+ 'userenv.lib',
+ ],
+ },
+ 'targets' : [
+ {
+ 'target_name': 'virtual_driver_lib<(virtual_driver_suffix)',
+ 'type': 'static_library',
+ 'sources': [
+ '../virtual_driver_switches.cc',
+ '../virtual_driver_switches.h',
+ 'virtual_driver_consts.cc',
+ 'virtual_driver_consts.h',
+ 'virtual_driver_helpers.cc',
+ 'virtual_driver_helpers.h',
+ ],
+ },
+ {
+ 'target_name': 'gcp_portmon_lib<(virtual_driver_suffix)',
+ 'type': 'static_library',
+ 'sources': [
+ 'port_monitor/port_monitor.cc',
+ 'port_monitor/port_monitor.h',
+ ],
+ 'dependencies': [
+ 'virtual_driver_lib<(virtual_driver_suffix)',
+ ],
+ },
+ {
+ 'target_name': 'gcp_portmon<(virtual_driver_suffix)',
+ 'type': 'loadable_module',
+ 'sources': [
+ 'port_monitor/port_monitor_dll.cc',
+ 'virtual_driver_common_resources.rc',
+ ],
+ 'dependencies': [
+ 'gcp_portmon_lib<(virtual_driver_suffix)',
+ ],
+ },
+ ],
+}
« no previous file with comments | « cloud_print/virtual_driver/win/virtual_driver.gyp ('k') | cloud_print/virtual_driver/win/virtual_driver64.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698