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

Side by Side Diff: device/hid/hid.gyp

Issue 1844073002: Remove "#pragma comment(lib" in device. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix delay loading crashes Created 4 years, 8 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 unified diff | Download patch
« no previous file with comments | « device/hid/BUILD.gn ('k') | device/hid/hid_service_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « device/hid/BUILD.gn ('k') | device/hid/hid_service_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698