| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 '<(SHARED_INTERMEDIATE_DIR)/blink/RuntimeEnabledFeatures.h', | 72 '<(SHARED_INTERMEDIATE_DIR)/blink/RuntimeEnabledFeatures.h', |
| 73 ], | 73 ], |
| 74 'action': [ | 74 'action': [ |
| 75 'python', | 75 'python', |
| 76 '../build/scripts/make_runtime_features.py', | 76 '../build/scripts/make_runtime_features.py', |
| 77 'RuntimeEnabledFeatures.in', | 77 'RuntimeEnabledFeatures.in', |
| 78 '--output_dir', | 78 '--output_dir', |
| 79 '<(SHARED_INTERMEDIATE_DIR)/blink', | 79 '<(SHARED_INTERMEDIATE_DIR)/blink', |
| 80 ], | 80 ], |
| 81 }, | 81 }, |
| 82 { |
| 83 'action_name': 'ColorData', |
| 84 'inputs': [ |
| 85 'ColorData.gperf', |
| 86 ], |
| 87 'outputs': [ |
| 88 '<(SHARED_INTERMEDIATE_DIR)/blink/ColorData.cpp', |
| 89 ], |
| 90 'action': [ |
| 91 '<(gperf_exe)', |
| 92 '--key-positions=*', |
| 93 '-D', '-s', '2', |
| 94 '<@(_inputs)', |
| 95 '--output-file=<(SHARED_INTERMEDIATE_DIR)/blink/ColorData.cpp', |
| 96 ], |
| 97 }, |
| 82 ] | 98 ] |
| 83 }, | 99 }, |
| 84 ], | 100 ], |
| 85 } | 101 } |
| OLD | NEW |