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

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
« no previous file with comments | « build/all.gyp ('k') | cloud_print/virtual_driver/win/port_monitor/port_monitor.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
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 ],
36 'msvs_guid': 'ED3D7186-C94E-4D8B-A8E7-B7260F638F46',
37 },
38 {
39 'target_name': 'gcp_portmon64',
40 'type': 'loadable_module',
41 'defines': [
42 '<@(nacl_win64_defines)',
43 ],
44 'dependencies': [
45 '../../base/base.gyp:base_nacl_win64',
46 ],
47 'msvs_guid': '9BB292F4-6104-495A-B415-C3E314F46D6F',
48 'configurations': {
49 'Common_Base': {
50 'msvs_target_platform': 'x64',
51 },
52 },
53 },
54 {
55 'target_name': 'virtual_driver_unittests',
56 'type': 'executable',
57 'msvs_guid': '97F82D29-58D8-4909-86C8-F2BBBCC4FEBF',
58 'dependencies': [
59 '../../base/base.gyp:base',
60 '../../base/base.gyp:test_support_base',
61 '../../testing/gmock.gyp:gmock',
62 '../../testing/gtest.gyp:gtest',
63 ],
64 'sources': [
65 # Infrastructure files.
66 '../../base/test/run_all_unittests.cc',
67 'win/port_monitor/port_monitor_unittest.cc'
68 ],
69 },
70 ],
71 },
72 ],
73 ]
74 }
75
76 # Local Variables:
77 # tab-width:2
78 # indent-tabs-mode:nil
79 # End:
80 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | cloud_print/virtual_driver/win/port_monitor/port_monitor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698