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

Side by Side Diff: Source/bindings/derived_sources.gyp

Issue 18478003: Vibration cannot be canceled during pattern vibration. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: patch Created 7 years, 2 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) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 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 26 matching lines...) Expand all
37 ], 37 ],
38 38
39 'variables': { 39 'variables': {
40 'main_idl_files': [ 40 'main_idl_files': [
41 '<@(core_idl_files)', 41 '<@(core_idl_files)',
42 '<@(modules_idl_files)', 42 '<@(modules_idl_files)',
43 '<@(svg_idl_files)', 43 '<@(svg_idl_files)',
44 ], 44 ],
45 'support_idl_files': [ 45 'support_idl_files': [
46 '<@(webcore_testing_support_idl_files)', 46 '<@(webcore_testing_support_idl_files)',
47 '<@(modules_testing_support_idl_files)',
47 ], 48 ],
48 'testing_support_idl_files': [ 49 'testing_support_idl_files': [
49 '<@(webcore_testing_support_idl_files)', 50 '<@(webcore_testing_support_idl_files)',
51 '<@(modules_testing_support_idl_files)',
50 '<@(generated_webcore_testing_support_idl_files)', 52 '<@(generated_webcore_testing_support_idl_files)',
51 ], 53 ],
52 'compiler_module_files': [ 54 'compiler_module_files': [
53 'scripts/idl_compiler.py', 55 'scripts/idl_compiler.py',
54 '<(DEPTH)/third_party/ply/lex.py', 56 '<(DEPTH)/third_party/ply/lex.py',
55 '<(DEPTH)/third_party/ply/yacc.py', 57 '<(DEPTH)/third_party/ply/yacc.py',
56 # jinja2/__init__.py contains version string, so sufficient for package 58 # jinja2/__init__.py contains version string, so sufficient for package
57 '<(DEPTH)/third_party/jinja2/__init__.py', 59 '<(DEPTH)/third_party/jinja2/__init__.py',
58 '<(DEPTH)/third_party/markupsafe/__init__.py', # jinja2 dep 60 '<(DEPTH)/third_party/markupsafe/__init__.py', # jinja2 dep
59 '<(DEPTH)/tools/idl_parser/idl_lexer.py', 61 '<(DEPTH)/tools/idl_parser/idl_lexer.py',
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 '../build/scripts/action_derivedsourcesallinone.py', 295 '../build/scripts/action_derivedsourcesallinone.py',
294 '<(SHARED_INTERMEDIATE_DIR)/blink/BindingsDerivedSources.txt', 296 '<(SHARED_INTERMEDIATE_DIR)/blink/BindingsDerivedSources.txt',
295 '--', 297 '--',
296 '<@(derived_sources_aggregate_files)', 298 '<@(derived_sources_aggregate_files)',
297 ], 299 ],
298 'message': 'Generating bindings derived sources', 300 'message': 'Generating bindings derived sources',
299 }], 301 }],
300 }, 302 },
301 ], 303 ],
302 } 304 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698