| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 'hid_service_win.h', | 47 'hid_service_win.h', |
| 48 'hid_usage_and_page.cc', | 48 'hid_usage_and_page.cc', |
| 49 'hid_usage_and_page.h', | 49 'hid_usage_and_page.h', |
| 50 ], | 50 ], |
| 51 'conditions': [ | 51 'conditions': [ |
| 52 ['OS=="linux" and use_udev==1', { | 52 ['OS=="linux" and use_udev==1', { |
| 53 'dependencies': [ | 53 'dependencies': [ |
| 54 '../udev_linux/udev.gyp:udev_linux', | 54 '../udev_linux/udev.gyp:udev_linux', |
| 55 ], | 55 ], |
| 56 'sources': [ | 56 'sources': [ |
| 57 'device_monitor_linux.cc', | |
| 58 'device_monitor_linux.h', | |
| 59 'fake_input_service_linux.cc', | 57 'fake_input_service_linux.cc', |
| 60 'fake_input_service_linux.h', | 58 'fake_input_service_linux.h', |
| 61 'hid_service_linux.cc', | 59 'hid_service_linux.cc', |
| 62 'hid_service_linux.h', | 60 'hid_service_linux.h', |
| 63 'input_service_linux.cc', | 61 'input_service_linux.cc', |
| 64 'input_service_linux.h', | 62 'input_service_linux.h', |
| 65 ], | 63 ], |
| 66 }], | 64 }], |
| 67 ['OS=="win"', { | 65 ['OS=="win"', { |
| 68 'all_dependent_settings': { | 66 'all_dependent_settings': { |
| 69 'msvs_settings': { | 67 'msvs_settings': { |
| 70 'VCLinkerTool': { | 68 'VCLinkerTool': { |
| 71 'AdditionalDependencies': [ | 69 'AdditionalDependencies': [ |
| 72 'hid.lib', | 70 'hid.lib', |
| 73 'setupapi.lib', | 71 'setupapi.lib', |
| 74 ], | 72 ], |
| 75 }, | 73 }, |
| 76 }, | 74 }, |
| (...skipping 19 matching lines...) Expand all Loading... |
| 96 '../../testing/gmock.gyp:gmock', | 94 '../../testing/gmock.gyp:gmock', |
| 97 'device_hid', | 95 'device_hid', |
| 98 ], | 96 ], |
| 99 'sources': [ | 97 'sources': [ |
| 100 'mock_hid_service.cc', | 98 'mock_hid_service.cc', |
| 101 'mock_hid_service.h', | 99 'mock_hid_service.h', |
| 102 ], | 100 ], |
| 103 }, | 101 }, |
| 104 ], | 102 ], |
| 105 } | 103 } |
| OLD | NEW |