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

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

Issue 17035004: [ABANDONED] Introduce Promise example implementation written in JavaScript. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 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
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/dom/Promise.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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 'python', 78 'python',
79 'scripts/make_internal_runtime_flags.py', 79 'scripts/make_internal_runtime_flags.py',
80 'page/RuntimeEnabledFeatures.in', 80 'page/RuntimeEnabledFeatures.in',
81 '--output_dir', 81 '--output_dir',
82 '<(SHARED_INTERMEDIATE_DIR)/webkit/', 82 '<(SHARED_INTERMEDIATE_DIR)/webkit/',
83 ], 83 ],
84 }, 84 },
85 ] 85 ]
86 }, 86 },
87 { 87 {
88 'target_name': 'make_derived_sources_for_dom_js_implementation',
89 'type': 'none',
90 'sources': [
91 '<@(core_dom_binding_js_files)',
92 ],
93 'rules': [
94 {
95 'rule_name': 'derive_custom_script_header',
96 'extension': 'js',
97 'outputs': [
98 '<(SHARED_INTERMEDIATE_DIR)/webkit/<(RULE_INPUT_ROOT)CustomScript.h' ,
99 ],
100 'msvs_cygwin_shell': 0,
101 'action': [
102 '<(perl_exe)',
103 'inspector/xxd.pl',
104 '<(RULE_INPUT_ROOT)_js',
105 '<(RULE_INPUT_PATH)',
106 '<@(_outputs)',
107 ],
108 },
109 ],
110 },
111 {
88 'target_name': 'make_derived_sources', 112 'target_name': 'make_derived_sources',
89 'type': 'none', 113 'type': 'none',
90 'hard_dependency': 1, 114 'hard_dependency': 1,
91 'dependencies': [ 115 'dependencies': [
92 'generate_test_support_idls', 116 'generate_test_support_idls',
93 ], 117 ],
94 'sources': [ 118 'sources': [
95 # bison rule 119 # bison rule
96 '<(SHARED_INTERMEDIATE_DIR)/webkit/CSSGrammar.y', 120 '<(SHARED_INTERMEDIATE_DIR)/webkit/CSSGrammar.y',
97 'xml/XPathGrammar.y', 121 'xml/XPathGrammar.y',
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 'scripts/make-hash-tools.pl', 685 'scripts/make-hash-tools.pl',
662 '<(SHARED_INTERMEDIATE_DIR)/webkit', 686 '<(SHARED_INTERMEDIATE_DIR)/webkit',
663 '<(RULE_INPUT_PATH)', 687 '<(RULE_INPUT_PATH)',
664 '<(gperf_exe)', 688 '<(gperf_exe)',
665 ], 689 ],
666 }, 690 },
667 ], 691 ],
668 }, 692 },
669 ], 693 ],
670 } 694 }
OLDNEW
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/dom/Promise.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698