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

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

Issue 138223002: WIP: Implement binding layer for Blink-in-JavaScript Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/frame/DOMWindowBase64.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 'generate_test_support_idls', 97 'generate_test_support_idls',
98 '../config.gyp:config', 98 '../config.gyp:config',
99 ], 99 ],
100 'sources': [ 100 'sources': [
101 # bison rule 101 # bison rule
102 'css/CSSGrammar.y', 102 'css/CSSGrammar.y',
103 'xml/XPathGrammar.y', 103 'xml/XPathGrammar.y',
104 ], 104 ],
105 'actions': [ 105 'actions': [
106 { 106 {
107 'action_name': 'generateBlinkInJavaScript',
108 'inputs': [
109 '../bindings/v8/BlinkInJavaScriptController.js',
110 'frame/WindowBase64.js',
111 ],
112 'outputs': [
113 '<(SHARED_INTERMEDIATE_DIR)/blink/BlinkInJavaScript.h',
114 ],
115 'action': [
116 'python',
117 '../build/scripts/make_blink_in_javascript.py',
118 '<@(_outputs)',
119 '<@(_inputs)'
120 ],
121 'msvs_cygwin_shell': 0,
122 },
123 {
107 'action_name': 'generateXMLViewerCSS', 124 'action_name': 'generateXMLViewerCSS',
108 'inputs': [ 125 'inputs': [
109 'xml/XMLViewer.css', 126 'xml/XMLViewer.css',
110 ], 127 ],
111 'outputs': [ 128 'outputs': [
112 '<(SHARED_INTERMEDIATE_DIR)/blink/XMLViewerCSS.h', 129 '<(SHARED_INTERMEDIATE_DIR)/blink/XMLViewerCSS.h',
113 ], 130 ],
114 'action': [ 131 'action': [
115 'python', 132 'python',
116 '../build/scripts/xxd.py', 133 '../build/scripts/xxd.py',
(...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 '<(RULE_INPUT_PATH)', 652 '<(RULE_INPUT_PATH)',
636 '<(SHARED_INTERMEDIATE_DIR)/blink', 653 '<(SHARED_INTERMEDIATE_DIR)/blink',
637 '<(bison_exe)', 654 '<(bison_exe)',
638 ], 655 ],
639 'msvs_cygwin_shell': 1, 656 'msvs_cygwin_shell': 1,
640 }, 657 },
641 ], 658 ],
642 }, 659 },
643 ], 660 ],
644 } 661 }
OLDNEW
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/frame/DOMWindowBase64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698