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

Side by Side Diff: Source/core/core_generated.gyp

Issue 310563004: IDL build: Split global constructors into core and modules (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Tweak (reupload) Created 6 years, 6 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 | Annotate | Revision Log
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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 'event_idl_files_list': 50 'event_idl_files_list':
51 '<|(event_idl_files_list.tmp <@(event_idl_files))', 51 '<|(event_idl_files_list.tmp <@(event_idl_files))',
52 }, 52 },
53 'inputs': [ 53 'inputs': [
54 '../bindings/scripts/generate_event_interfaces.py', 54 '../bindings/scripts/generate_event_interfaces.py',
55 '../bindings/scripts/utilities.py', 55 '../bindings/scripts/utilities.py',
56 '<(event_idl_files_list)', 56 '<(event_idl_files_list)',
57 '<@(event_idl_files)', 57 '<@(event_idl_files)',
58 ], 58 ],
59 'outputs': [ 59 'outputs': [
60 '<(blink_output_dir)/EventInterfaces.in', 60 '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.in',
61 ], 61 ],
62 'action': [ 62 'action': [
63 'python', 63 'python',
64 '../bindings/scripts/generate_event_interfaces.py', 64 '../bindings/scripts/generate_event_interfaces.py',
65 '--event-idl-files-list', 65 '--event-idl-files-list',
66 '<(event_idl_files_list)', 66 '<(event_idl_files_list)',
67 '--event-interfaces-file', 67 '--event-interfaces-file',
68 '<(blink_output_dir)/EventInterfaces.in', 68 '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.in',
69 '--write-file-only-if-changed', 69 '--write-file-only-if-changed',
70 '<(write_file_only_if_changed)', 70 '<(write_file_only_if_changed)',
71 ], 71 ],
72 }, 72 },
73 ], 73 ],
74 }, 74 },
75 { 75 {
76 'target_name': 'generated_testing_idls', 76 'target_name': 'generated_testing_idls',
77 'type': 'none', 77 'type': 'none',
78 'actions': [ 78 'actions': [
(...skipping 736 matching lines...) Expand 10 before | Expand all | Expand 10 after
815 '../build/scripts/rule_bison.py', 815 '../build/scripts/rule_bison.py',
816 '<(RULE_INPUT_PATH)', 816 '<(RULE_INPUT_PATH)',
817 '<(SHARED_INTERMEDIATE_DIR)/blink', 817 '<(SHARED_INTERMEDIATE_DIR)/blink',
818 '<(bison_exe)', 818 '<(bison_exe)',
819 ], 819 ],
820 }, 820 },
821 ], 821 ],
822 }, 822 },
823 ], 823 ],
824 } 824 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698