| OLD | NEW |
| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 # includes correctly: http://crbug.com/380054 | 53 # includes correctly: http://crbug.com/380054 |
| 54 '<(blink_core_output_dir)', | 54 '<(blink_core_output_dir)', |
| 55 '<(blink_modules_output_dir)', | 55 '<(blink_modules_output_dir)', |
| 56 ], | 56 ], |
| 57 'sources': [ | 57 'sources': [ |
| 58 '<@(modules_files)', | 58 '<@(modules_files)', |
| 59 '<@(bindings_modules_v8_generated_aggregate_files)', | 59 '<@(bindings_modules_v8_generated_aggregate_files)', |
| 60 ], | 60 ], |
| 61 'actions': [ | 61 'actions': [ |
| 62 { | 62 { |
| 63 'action_name': 'FetchPolyfill', |
| 64 'process_outputs_as_sources': 1, |
| 65 'variables': { |
| 66 'resources': [ |
| 67 'serviceworkers/polyfills/fetchPolyfill.js', |
| 68 ], |
| 69 }, |
| 70 'inputs': [ |
| 71 '../build/scripts/make-file-arrays.py', |
| 72 '<@(resources)', |
| 73 ], |
| 74 'outputs': [ |
| 75 '<(SHARED_INTERMEDIATE_DIR)/blink/FetchPolyfill.h', |
| 76 '<(SHARED_INTERMEDIATE_DIR)/blink/FetchPolyfill.cpp', |
| 77 ], |
| 78 'action': [ |
| 79 'python', |
| 80 '../build/scripts/make-file-arrays.py', |
| 81 '--out-h=<(SHARED_INTERMEDIATE_DIR)/blink/FetchPolyfill.h', |
| 82 '--out-cpp=<(SHARED_INTERMEDIATE_DIR)/blink/FetchPolyfill.cpp', |
| 83 '--namespace=WebCore', |
| 84 '<@(resources)', |
| 85 ], |
| 86 }, |
| 87 { |
| 63 'action_name': 'CachePolyfill', | 88 'action_name': 'CachePolyfill', |
| 64 'process_outputs_as_sources': 1, | 89 'process_outputs_as_sources': 1, |
| 65 'variables': { | 90 'variables': { |
| 66 'resources': [ | 91 'resources': [ |
| 67 'serviceworkers/polyfills/cachePolyfill.js', | 92 'serviceworkers/polyfills/cachePolyfill.js', |
| 68 ], | 93 ], |
| 69 }, | 94 }, |
| 70 'inputs': [ | 95 'inputs': [ |
| 71 '../build/scripts/make-file-arrays.py', | 96 '../build/scripts/make-file-arrays.py', |
| 72 '<@(resources)', | 97 '<@(resources)', |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 ], | 142 ], |
| 118 'sources': [ | 143 'sources': [ |
| 119 # bison rule | 144 # bison rule |
| 120 '../core/css/CSSGrammar.y', | 145 '../core/css/CSSGrammar.y', |
| 121 '../core/xml/XPathGrammar.y', | 146 '../core/xml/XPathGrammar.y', |
| 122 ], | 147 ], |
| 123 'actions': [ | 148 'actions': [ |
| 124 ], | 149 ], |
| 125 }], | 150 }], |
| 126 } | 151 } |
| OLD | NEW |