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

Unified Diff: device/hid/hid.gyp

Issue 2332843004: Remove GYP files. (Closed)
Patch Set: Merge Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « device/geolocation/geolocation.gyp ('k') | device/media_transfer_protocol/media_transfer_protocol.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/hid/hid.gyp
diff --git a/device/hid/hid.gyp b/device/hid/hid.gyp
deleted file mode 100644
index 22b2dde03905aaaecab8d10e98a0b64a82aac98d..0000000000000000000000000000000000000000
--- a/device/hid/hid.gyp
+++ /dev/null
@@ -1,103 +0,0 @@
-# Copyright 2013 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-{
- 'variables': {
- 'chromium_code': 1,
- },
- 'targets': [
- {
- 'target_name': 'device_hid',
- 'type': 'static_library',
- 'include_dirs': [
- '../..',
- ],
- 'dependencies': [
- '../../components/components.gyp:device_event_log_component',
- '../../net/net.gyp:net',
- '../core/core.gyp:device_core',
- ],
- 'sources': [
- 'hid_collection_info.cc',
- 'hid_collection_info.h',
- 'hid_connection.cc',
- 'hid_connection.h',
- 'hid_connection_linux.cc',
- 'hid_connection_linux.h',
- 'hid_connection_mac.cc',
- 'hid_connection_mac.h',
- 'hid_connection_win.cc',
- 'hid_connection_win.h',
- 'hid_device_filter.cc',
- 'hid_device_filter.h',
- 'hid_device_info.cc',
- 'hid_device_info.h',
- 'hid_device_info_linux.cc',
- 'hid_device_info_linux.h',
- 'hid_report_descriptor.cc',
- 'hid_report_descriptor.h',
- 'hid_report_descriptor_item.cc',
- 'hid_report_descriptor_item.h',
- 'hid_service.cc',
- 'hid_service.h',
- 'hid_service_mac.cc',
- 'hid_service_mac.h',
- 'hid_service_win.cc',
- 'hid_service_win.h',
- 'hid_usage_and_page.cc',
- 'hid_usage_and_page.h',
- ],
- 'conditions': [
- ['OS=="linux" and use_udev==1', {
- 'dependencies': [
- '../udev_linux/udev.gyp:udev_linux',
- ],
- 'sources': [
- 'fake_input_service_linux.cc',
- 'fake_input_service_linux.h',
- 'hid_service_linux.cc',
- 'hid_service_linux.h',
- 'input_service_linux.cc',
- 'input_service_linux.h',
- ],
- }],
- ['OS=="win"', {
- 'all_dependent_settings': {
- 'msvs_settings': {
- 'VCLinkerTool': {
- 'AdditionalDependencies': [
- 'hid.lib',
- 'setupapi.lib',
- ],
- },
- },
- },
- 'msvs_settings': {
- 'VCLinkerTool': {
- 'AdditionalDependencies': [
- 'hid.lib',
- 'setupapi.lib',
- ],
- },
- },
- }],
- ],
- },
- {
- 'target_name': 'device_hid_mocks',
- 'type': 'static_library',
- 'include_dirs': [
- '../..',
- ],
- 'dependencies': [
- '../../testing/gmock.gyp:gmock',
- 'device_hid',
- ],
- 'sources': [
- 'mock_hid_service.cc',
- 'mock_hid_service.h',
- ],
- },
- ],
-}
« no previous file with comments | « device/geolocation/geolocation.gyp ('k') | device/media_transfer_protocol/media_transfer_protocol.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698