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

Side by Side Diff: content/content_browser.gypi

Issue 13433002: Implement DeviceOrientation API on Windows (Closed) Base URL: ssh://nhu@powerbuilder.sh.intel.com/home/www-data/git-repos/perc/chromium.git@sensor
Patch Set: Update according to sail's and peter's comments #8, #9 and #11 Created 7 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
OLDNEW
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 { 5 {
6 'dependencies': [ 6 'dependencies': [
7 'browser/speech/proto/speech_proto.gyp:speech_proto', 7 'browser/speech/proto/speech_proto.gyp:speech_proto',
8 '../base/base.gyp:base_static', 8 '../base/base.gyp:base_static',
9 '../crypto/crypto.gyp:crypto', 9 '../crypto/crypto.gyp:crypto',
10 '../google_apis/google_apis.gyp:google_apis', 10 '../google_apis/google_apis.gyp:google_apis',
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 'browser/devtools/worker_devtools_message_filter.h', 334 'browser/devtools/worker_devtools_message_filter.h',
335 'browser/device_monitor_linux.cc', 335 'browser/device_monitor_linux.cc',
336 'browser/device_monitor_linux.h', 336 'browser/device_monitor_linux.h',
337 'browser/device_monitor_mac.h', 337 'browser/device_monitor_mac.h',
338 'browser/device_monitor_mac.mm', 338 'browser/device_monitor_mac.mm',
339 'browser/device_orientation/accelerometer_mac.cc', 339 'browser/device_orientation/accelerometer_mac.cc',
340 'browser/device_orientation/accelerometer_mac.h', 340 'browser/device_orientation/accelerometer_mac.h',
341 'browser/device_orientation/data_fetcher.h', 341 'browser/device_orientation/data_fetcher.h',
342 'browser/device_orientation/data_fetcher_impl_android.cc', 342 'browser/device_orientation/data_fetcher_impl_android.cc',
343 'browser/device_orientation/data_fetcher_impl_android.h', 343 'browser/device_orientation/data_fetcher_impl_android.h',
344 'browser/device_orientation/data_fetcher_impl_win.cc',
345 'browser/device_orientation/data_fetcher_impl_win.h',
344 'browser/device_orientation/device_data.h', 346 'browser/device_orientation/device_data.h',
345 'browser/device_orientation/message_filter.cc', 347 'browser/device_orientation/message_filter.cc',
346 'browser/device_orientation/message_filter.h', 348 'browser/device_orientation/message_filter.h',
347 'browser/device_orientation/motion.cc', 349 'browser/device_orientation/motion.cc',
348 'browser/device_orientation/motion.h', 350 'browser/device_orientation/motion.h',
349 'browser/device_orientation/motion_message_filter.cc', 351 'browser/device_orientation/motion_message_filter.cc',
350 'browser/device_orientation/motion_message_filter.h', 352 'browser/device_orientation/motion_message_filter.h',
351 'browser/device_orientation/observer_delegate.cc', 353 'browser/device_orientation/observer_delegate.cc',
352 'browser/device_orientation/observer_delegate.h', 354 'browser/device_orientation/observer_delegate.h',
353 'browser/device_orientation/orientation.cc', 355 'browser/device_orientation/orientation.cc',
(...skipping 747 matching lines...) Expand 10 before | Expand all | Expand 10 after
1101 # This prevents the inclusion of atlhost.h which paired 1103 # This prevents the inclusion of atlhost.h which paired
1102 # with the windows 8 sdk it does the wrong thing. 1104 # with the windows 8 sdk it does the wrong thing.
1103 '__ATLHOST_H__', 1105 '__ATLHOST_H__',
1104 ], 1106 ],
1105 'link_settings': { 1107 'link_settings': {
1106 'libraries': [ 1108 'libraries': [
1107 '-lcomctl32.lib', 1109 '-lcomctl32.lib',
1108 '-ldinput8.lib', 1110 '-ldinput8.lib',
1109 '-llocationapi.lib', 1111 '-llocationapi.lib',
1110 '-lsensorsapi.lib', 1112 '-lsensorsapi.lib',
1113 '-lportabledeviceguids.lib',
sail 2013/04/09 20:53:53 How big is this lib? Can we avoid using this and j
nhu 2013/04/10 09:46:42 On my windows kits, it is 504KB. If we don't use i
sail 2013/04/10 17:00:10 Unfortunately that's too big. I think you can fix
1111 ], 1114 ],
1112 'msvs_settings': { 1115 'msvs_settings': {
1113 'VCLinkerTool': { 1116 'VCLinkerTool': {
1114 'DelayLoadDLLs': [ 1117 'DelayLoadDLLs': [
1115 'dinput8.dll', 1118 'dinput8.dll',
1116 'user32.dll', 1119 'user32.dll',
1117 ], 1120 ],
1118 }, 1121 },
1119 }, 1122 },
1120 }, 1123 },
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
1300 ['exclude', '^browser/speech/'], 1303 ['exclude', '^browser/speech/'],
1301 ], 1304 ],
1302 }], 1305 }],
1303 ['linux_use_libgps==1', { 1306 ['linux_use_libgps==1', {
1304 'dependencies': [ 1307 'dependencies': [
1305 '../build/linux/system.gyp:libgps', 1308 '../build/linux/system.gyp:libgps',
1306 ], 1309 ],
1307 }], 1310 }],
1308 ], 1311 ],
1309 } 1312 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698