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

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: 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) 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 19 matching lines...) Expand all
30 30
31 { 31 {
32 'includes': [ 32 'includes': [
33 '../build/win/precompile.gypi', 33 '../build/win/precompile.gypi',
34 '../core/core.gypi', 34 '../core/core.gypi',
35 '../modules/modules.gypi', 35 '../modules/modules.gypi',
36 'bindings.gypi', 36 'bindings.gypi',
37 ], 37 ],
38 38
39 'variables': { 39 'variables': {
40 'partial_interface_test_support_idl_files': [
tkent 2013/08/28 03:58:07 The variable name should start with deprecated_per
kihong 2013/08/28 05:25:25 Done.
41 '<@(internals_test_support_idl_file)',
42 '<@(modules_test_support_idl_files)',
43 ],
40 'deprecated_perl_idl_files': [ 44 'deprecated_perl_idl_files': [
41 '<@(deprecated_perl_core_idl_files)', 45 '<@(deprecated_perl_core_idl_files)',
42 '<@(deprecated_perl_modules_idl_files)', 46 '<@(deprecated_perl_modules_idl_files)',
43 '<@(deprecated_perl_svg_idl_files)', 47 '<@(deprecated_perl_svg_idl_files)',
48 '<@(partial_interface_test_support_idl_files)',
44 ], 49 ],
45 'python_idl_files': [ 50 'python_idl_files': [
46 '<@(python_core_idl_files)', 51 '<@(python_core_idl_files)',
47 '<@(python_modules_idl_files)', 52 '<@(python_modules_idl_files)',
48 '<@(python_svg_idl_files)', 53 '<@(python_svg_idl_files)',
49 ], 54 ],
50 'perl_and_python_idl_files': [ 55 'perl_and_python_idl_files': [
51 '<@(deprecated_perl_idl_files)', 56 '<@(deprecated_perl_idl_files)',
52 '<@(python_idl_files)', 57 '<@(python_idl_files)',
53 ], 58 ],
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 '../core/scripts/action_derivedsourcesallinone.py', 355 '../core/scripts/action_derivedsourcesallinone.py',
351 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfaceDependencies.txt', 356 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfaceDependencies.txt',
352 '--', 357 '--',
353 '<@(derived_sources_aggregate_files)', 358 '<@(derived_sources_aggregate_files)',
354 ], 359 ],
355 'message': 'Generating bindings derived sources', 360 'message': 'Generating bindings derived sources',
356 }], 361 }],
357 }, 362 },
358 ], 363 ],
359 } 364 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698