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

Unified Diff: Source/modules/modules.gyp

Issue 18478003: Vibration cannot be canceled during pattern vibration. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Vibration cannot be canceled during pattern vibration. Created 7 years, 4 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
Index: Source/modules/modules.gyp
diff --git a/Source/modules/modules.gyp b/Source/modules/modules.gyp
index b62845645e3078084ca66568ef6e55539d824f71..6edbcdd7ba1c3e96274fc2218e9d75919d0e0a7f 100644
--- a/Source/modules/modules.gyp
+++ b/Source/modules/modules.gyp
@@ -32,22 +32,42 @@
'../build/win/precompile.gypi',
'modules.gypi',
],
- 'targets': [{
- 'target_name': 'modules',
- 'type': 'static_library',
- 'dependencies': [
- '<(DEPTH)/third_party/zlib/zlib.gyp:zlib',
- '../config.gyp:config',
- '../core/core.gyp:webcore',
- ],
- 'defines': [
- 'WEBKIT_IMPLEMENTATION=1',
- 'INSIDE_WEBKIT',
- ],
- 'sources': [
- '<@(modules_files)',
- ],
- # Disable c4267 warnings until we fix size_t to int truncations.
- 'msvs_disabled_warnings': [ 4267, 4334, ]
- }],
+ 'targets': [
+ {
+ 'target_name': 'modules',
+ 'type': 'static_library',
+ 'dependencies': [
+ '<(DEPTH)/third_party/zlib/zlib.gyp:zlib',
+ '../config.gyp:config',
+ '../core/core.gyp:webcore',
+ ],
+ 'defines': [
+ 'WEBKIT_IMPLEMENTATION=1',
+ 'INSIDE_WEBKIT',
+ ],
+ 'sources': [
+ '<@(modules_files)',
+ ],
+ # Disable c4267 warnings until we fix size_t to int truncations.
+ 'msvs_disabled_warnings': [ 4267, 4334, ]
+ },
+ {
+ 'target_name': 'modules_test_support',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../config.gyp:config',
+ '../core/core.gyp:webcore',
+ ],
+ 'defines': [
+ 'WEBKIT_IMPLEMENTATION=1',
+ 'INSIDE_WEBKIT',
+ ],
+ 'include_dirs': [
tkent 2013/08/28 03:58:07 Is it necessary?
kihong 2013/08/28 05:25:25 I don't think so, it's eliminated.
+ 'testing',
+ ],
+ 'sources': [
+ '<@(modules_test_support_files)',
+ ],
+ },
+ ], # targets
}

Powered by Google App Engine
This is Rietveld 408576698