OLD | NEW |
| (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: | |
OLD | NEW |