| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 '<(SHARED_INTERMEDIATE_DIR)/blink/FontFamilyNames.h', | 51 '<(SHARED_INTERMEDIATE_DIR)/blink/FontFamilyNames.h', |
| 52 ], | 52 ], |
| 53 'action': [ | 53 'action': [ |
| 54 'python', | 54 'python', |
| 55 '../build/scripts/make_names.py', | 55 '../build/scripts/make_names.py', |
| 56 'graphics/fonts/FontFamilyNames.in', | 56 'graphics/fonts/FontFamilyNames.in', |
| 57 '--output_dir', | 57 '--output_dir', |
| 58 '<(SHARED_INTERMEDIATE_DIR)/blink', | 58 '<(SHARED_INTERMEDIATE_DIR)/blink', |
| 59 ], | 59 ], |
| 60 }, | 60 }, |
| 61 { |
| 62 'action_name': 'RuntimeEnabledFeatures', |
| 63 'inputs': [ |
| 64 '<@(scripts_for_in_files)', |
| 65 '../build/scripts/make_runtime_features.py', |
| 66 'RuntimeEnabledFeatures.in', |
| 67 '../build/scripts/templates/RuntimeEnabledFeatures.cpp.tmpl', |
| 68 '../build/scripts/templates/RuntimeEnabledFeatures.h.tmpl', |
| 69 ], |
| 70 'outputs': [ |
| 71 '<(SHARED_INTERMEDIATE_DIR)/blink/RuntimeEnabledFeatures.cpp', |
| 72 '<(SHARED_INTERMEDIATE_DIR)/blink/RuntimeEnabledFeatures.h', |
| 73 ], |
| 74 'action': [ |
| 75 'python', |
| 76 '../build/scripts/make_runtime_features.py', |
| 77 'RuntimeEnabledFeatures.in', |
| 78 '--output_dir', |
| 79 '<(SHARED_INTERMEDIATE_DIR)/blink', |
| 80 ], |
| 81 }, |
| 61 ] | 82 ] |
| 62 }, | 83 }, |
| 63 ], | 84 ], |
| 64 } | 85 } |
| OLD | NEW |