| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 'sources': [ | 56 'sources': [ |
| 57 'device_monitor_linux.cc', | 57 'device_monitor_linux.cc', |
| 58 'device_monitor_linux.h', | 58 'device_monitor_linux.h', |
| 59 'fake_input_service_linux.cc', | 59 'fake_input_service_linux.cc', |
| 60 'fake_input_service_linux.h', | 60 'fake_input_service_linux.h', |
| 61 'hid_service_linux.cc', | 61 'hid_service_linux.cc', |
| 62 'hid_service_linux.h', | 62 'hid_service_linux.h', |
| 63 'input_service_linux.cc', | 63 'input_service_linux.cc', |
| 64 'input_service_linux.h', | 64 'input_service_linux.h', |
| 65 ], | 65 ], |
| 66 }], |
| 67 ['OS=="win"', { |
| 68 'all_dependent_settings': { |
| 69 'msvs_settings': { |
| 70 'VCLinkerTool': { |
| 71 'AdditionalDependencies': [ |
| 72 'hid.lib', |
| 73 'setupapi.lib', |
| 74 ], |
| 75 }, |
| 76 }, |
| 77 }, |
| 78 'msvs_settings': { |
| 79 'VCLinkerTool': { |
| 80 'AdditionalDependencies': [ |
| 81 'hid.lib', |
| 82 'setupapi.lib', |
| 83 ], |
| 84 }, |
| 85 }, |
| 66 }], | 86 }], |
| 67 ], | 87 ], |
| 68 }, | 88 }, |
| 69 { | 89 { |
| 70 'target_name': 'device_hid_mocks', | 90 'target_name': 'device_hid_mocks', |
| 71 'type': 'static_library', | 91 'type': 'static_library', |
| 72 'include_dirs': [ | 92 'include_dirs': [ |
| 73 '../..', | 93 '../..', |
| 74 ], | 94 ], |
| 75 'dependencies': [ | 95 'dependencies': [ |
| 76 '../../testing/gmock.gyp:gmock', | 96 '../../testing/gmock.gyp:gmock', |
| 77 'device_hid', | 97 'device_hid', |
| 78 ], | 98 ], |
| 79 'sources': [ | 99 'sources': [ |
| 80 'mock_hid_service.cc', | 100 'mock_hid_service.cc', |
| 81 'mock_hid_service.h', | 101 'mock_hid_service.h', |
| 82 ], | 102 ], |
| 83 }, | 103 }, |
| 84 ], | 104 ], |
| 85 } | 105 } |
| OLD | NEW |