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

Side by Side Diff: Source/devtools/devtools.gyp

Issue 410953002: Merge CSSProperties.in and CSSShorthands.in (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@infiles
Patch Set: err on safe side for devtools parsing longhands Created 6 years, 5 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 'type': 'none', 230 'type': 'none',
231 'actions': [ 231 'actions': [
232 { 232 {
233 'action_name': 'generateSupportedCSSProperties', 233 'action_name': 'generateSupportedCSSProperties',
234 'inputs': [ 234 'inputs': [
235 # The python script in action below. 235 # The python script in action below.
236 'scripts/generate_supported_css.py', 236 'scripts/generate_supported_css.py',
237 # Input files for the script. 237 # Input files for the script.
238 '../core/css/CSSPropertyNames.in', 238 '../core/css/CSSPropertyNames.in',
239 '../core/css/SVGCSSPropertyNames.in', 239 '../core/css/SVGCSSPropertyNames.in',
240 '../core/css/CSSShorthands.in', 240 '../core/css/CSSProperties.in',
241 ], 241 ],
242 'outputs': [ 242 'outputs': [
243 '<(blink_devtools_output_dir)/SupportedCSSProperties.js', 243 '<(blink_devtools_output_dir)/SupportedCSSProperties.js',
244 ], 244 ],
245 'action': [ 245 'action': [
246 'python', 246 'python',
247 '<@(_inputs)', 247 '<@(_inputs)',
248 '<@(_outputs)', 248 '<@(_outputs)',
249 ], 249 ],
250 'message': 'Generating supported CSS properties for front end', 250 'message': 'Generating supported CSS properties for front end',
(...skipping 633 matching lines...) Expand 10 before | Expand all | Expand 10 after
884 '<@(devtools_module_json_files)', 884 '<@(devtools_module_json_files)',
885 ], 885 ],
886 'outputs': ['<(blink_devtools_output_dir)/common/modules .js'], 886 'outputs': ['<(blink_devtools_output_dir)/common/modules .js'],
887 'action': ['python', '<@(_script_name)', '<@(_input_file )', '<@(_outputs)', '<@(devtools_module_json_files)'], 887 'action': ['python', '<@(_script_name)', '<@(_input_file )', '<@(_outputs)', '<@(devtools_module_json_files)'],
888 }], 888 }],
889 }, 889 },
890 ], 890 ],
891 }], 891 }],
892 ], # conditions 892 ], # conditions
893 } 893 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698