OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 { | 4 { |
5 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 }, | 7 }, |
8 'targets': [ | 8 'targets': [ |
9 { | 9 { |
10 # GN version: //cloud_print | 10 # GN version: //cloud_print |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 'conditions': [ | 47 'conditions': [ |
48 ['OS=="win"', { | 48 ['OS=="win"', { |
49 'sources': [ | 49 'sources': [ |
50 'service/win/service_ipc_unittest.cc', | 50 'service/win/service_ipc_unittest.cc', |
51 'virtual_driver/win/port_monitor/port_monitor_unittest.cc', | 51 'virtual_driver/win/port_monitor/port_monitor_unittest.cc', |
52 ], | 52 ], |
53 'dependencies': [ | 53 'dependencies': [ |
54 'virtual_driver/win/virtual_driver.gyp:gcp_portmon_lib', | 54 'virtual_driver/win/virtual_driver.gyp:gcp_portmon_lib', |
55 ], | 55 ], |
56 }], | 56 }], |
57 # See http://crbug.com/162998#c4 for why this is needed. | |
58 ['OS=="linux" and use_allocator!="none"', { | |
59 'dependencies': [ | |
60 '../base/allocator/allocator.gyp:allocator', | |
61 ], | |
62 }], | |
63 ], | 57 ], |
64 'msvs_settings': { | 58 'msvs_settings': { |
65 'VCLinkerTool': { | 59 'VCLinkerTool': { |
66 'AdditionalDependencies': [ | 60 'AdditionalDependencies': [ |
67 'secur32.lib', | 61 'secur32.lib', |
68 ], | 62 ], |
69 }, | 63 }, |
70 }, | 64 }, |
71 }, | 65 }, |
72 ], | 66 ], |
73 } | 67 } |
OLD | NEW |