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

Side by Side Diff: cloud_print/virtual_driver/virtual_driver.gyp

Issue 6778001: Initial CL for a simple port monitor for Windows to be used by the Cloud Print Virtual Print driver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 8 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
(Empty)
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'includes': [
7 '../../build/common.gypi',
8 ],
9 'target_defaults': {
10 'variables': {
11 'chromium_code': 1,
12 'version_py_path': '../../chrome/tools/build/version.py',
13 'version_path': 'VERSION',
14 },
15 'include_dirs': [
16 '../..',
17 ],
18 'libraries': [
19 'userenv.lib',
20 ],
21 'sources': [
22 'win/port_monitor/port_monitor.cc',
23 'win/port_monitor/port_monitor.h',
24 'win/port_monitor/port_monitor.def',
25 ],
26 },
27 'conditions': [
28 ['OS=="win"', {
29 'targets' : [
30 {
31 'target_name': 'gcp_portmon',
32 'type': 'loadable_module',
33 'dependencies': [
34 '../../base/base.gyp:base',
35 '../../chrome/chrome.gyp:common_constants',
36 ],
37 'msvs_guid': 'ED3D7186-C94E-4D8B-A8E7-B7260F638F46',
38 },
39 {
40 'target_name': 'gcp_portmon64',
41 'type': 'loadable_module',
42 'defines': [
43 '<@(nacl_win64_defines)',
44 ],
45 'dependencies': [
46 '../../base/base.gyp:base_nacl_win64',
47 '../../chrome/chrome.gyp:common_constants_win64',
48 ],
49 'msvs_guid': '9BB292F4-6104-495A-B415-C3E314F46D6F',
50 'configurations': {
51 'Common_Base': {
52 'msvs_target_platform': 'x64',
53 },
54 },
55 },
56 {
57 'target_name': 'virtual_driver_unittests',
58 'type': 'executable',
59 'msvs_guid': '97F82D29-58D8-4909-86C8-F2BBBCC4FEBF',
60 'dependencies': [
61 '../../base/base.gyp:base',
62 '../../base/base.gyp:test_support_base',
63 '../../testing/gmock.gyp:gmock',
64 '../../testing/gtest.gyp:gtest',
65 ],
66 'sources': [
67 # Infrastructure files.
68 '../../base/test/run_all_unittests.cc',
69 'win/port_monitor/port_monitor_unittest.cc'
70 ],
71 },
72 ],
73 },
74 ],
75 ]
76 }
77
78 # Local Variables:
79 # tab-width:2
80 # indent-tabs-mode:nil
81 # End:
82 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698