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

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

Issue 6806016: Revert 80678 - Initial CL for a simple port monitor for Windows to be used by the Cloud Print Vir... (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')
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 '../../chrome/chrome.gyp:common_constants',
63 '../../base/base.gyp:test_support_base',
64 '../../testing/gmock.gyp:gmock',
65 '../../testing/gtest.gyp:gtest',
66 ],
67 'sources': [
68 # Infrastructure files.
69 '../../base/test/run_all_unittests.cc',
70 'win/port_monitor/port_monitor_unittest.cc'
71 ],
72 },
73 ],
74 },
75 ],
76 ]
77 }
78
79 # Local Variables:
80 # tab-width:2
81 # indent-tabs-mode:nil
82 # End:
83 # 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