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

Unified Diff: cloud_print/virtual_driver/win/port_monitor/virtual_driver_port_monitor.gyp

Issue 10543020: Temporary revert "Single binary for unittests." (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/port_monitor/virtual_driver_port_monitor.gyp
diff --git a/cloud_print/virtual_driver/win/port_monitor/virtual_driver_port_monitor.gyp b/cloud_print/virtual_driver/win/port_monitor/virtual_driver_port_monitor.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..630b5e4c55334d828a018fec9eb55d7191376bff
--- /dev/null
+++ b/cloud_print/virtual_driver/win/port_monitor/virtual_driver_port_monitor.gyp
@@ -0,0 +1,66 @@
+# 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.
+
+{
+ 'target_defaults': {
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'include_dirs': [
+ '../..',
+ ],
+ 'libraries': [
+ 'userenv.lib',
+ ],
+ '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',
+ '../virtual_driver_common_resources.rc',
+ 'port_monitor.cc',
+ 'port_monitor.h',
+ 'port_monitor.def',
+ ],
+ },
+ 'targets' : [
+ {
+ 'target_name': 'gcp_portmon',
+ 'type': 'loadable_module',
+ 'dependencies': [
+ '../../../../base/base.gyp:base',
+ ],
+ },
+ {
+ 'target_name': 'gcp_portmon64',
+ 'type': 'loadable_module',
+ 'defines': [
+ '<@(nacl_win64_defines)',
+ ],
+ 'dependencies': [
+ '../../../../base/base.gyp:base_nacl_win64',
+ ],
+ 'configurations': {
+ 'Common_Base': {
+ 'msvs_target_platform': 'x64',
+ },
+ },
+ },
+ {
+ 'target_name': 'virtual_driver_unittests',
+ 'type': 'executable',
+ 'dependencies': [
+ '../../../../base/base.gyp:base',
+ '../../../../base/base.gyp:run_all_unittests',
+ '../../../../testing/gmock.gyp:gmock',
+ '../../../../testing/gtest.gyp:gtest',
+ ],
+ 'sources': [
+ 'port_monitor_unittest.cc',
+ ],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698