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

Side by Side Diff: Source/web/web_tests.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 unified diff | Download patch
OLDNEW
1 # 1 #
2 # Copyright (C) 2011 Google Inc. All rights reserved. 2 # Copyright (C) 2011 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 'src', 66 'src',
67 ], 67 ],
68 'conditions': [ 68 'conditions': [
69 ['component=="shared_library"', { 69 ['component=="shared_library"', {
70 'defines': [ 70 'defines': [
71 'WEBKIT_DLL_UNITTEST', 71 'WEBKIT_DLL_UNITTEST',
72 ], 72 ],
73 }, { 73 }, {
74 'dependencies': [ 74 'dependencies': [
75 '../core/core.gyp:webcore', 75 '../core/core.gyp:webcore',
76 '../core/core.gyp:webcore_test_support',
77 '../modules/modules.gyp:modules_test_support',
tkent 2013/08/28 03:58:07 Why do you add this block?
kihong 2013/08/28 05:25:25 There is a build error during linking webkit_unit_
tkent 2013/08/28 06:07:24 Why does the unit test require V8Internals.cpp?
76 ], 78 ],
77 'defines': [ 79 'defines': [
78 'WEBKIT_IMPLEMENTATION=1', 80 'WEBKIT_IMPLEMENTATION=1',
79 'INSIDE_WEBKIT', 81 'INSIDE_WEBKIT',
80 ], 82 ],
81 'sources': [ 83 'sources': [
82 '<@(bindings_unittest_files)', 84 '<@(bindings_unittest_files)',
83 '<@(core_unittest_files)', 85 '<@(core_unittest_files)',
84 '<@(modules_unittest_files)', 86 '<@(modules_unittest_files)',
85 '<@(web_unittest_files)', 87 '<@(web_unittest_files)',
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 ['clang==1', { 157 ['clang==1', {
156 'target_defaults': { 158 'target_defaults': {
157 'cflags': ['-Wunused-parameter'], 159 'cflags': ['-Wunused-parameter'],
158 'xcode_settings': { 160 'xcode_settings': {
159 'WARNING_CFLAGS': ['-Wunused-parameter'], 161 'WARNING_CFLAGS': ['-Wunused-parameter'],
160 }, 162 },
161 }, 163 },
162 }], 164 }],
163 ], 165 ],
164 } 166 }
OLDNEW
« Source/modules/vibration/NavigatorVibration.cpp ('K') | « Source/web/web.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698