| 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 26 matching lines...) Expand all Loading... |
| 37 'targets': [ | 37 'targets': [ |
| 38 { | 38 { |
| 39 'target_name': 'make_platform_derived_sources', | 39 'target_name': 'make_platform_derived_sources', |
| 40 'type': 'none', | 40 'type': 'none', |
| 41 'hard_dependency': 1, | 41 'hard_dependency': 1, |
| 42 'actions': [ | 42 'actions': [ |
| 43 { | 43 { |
| 44 'action_name': 'FontFamilyNames', | 44 'action_name': 'FontFamilyNames', |
| 45 'inputs': [ | 45 'inputs': [ |
| 46 '<@(make_names_files)', | 46 '<@(make_names_files)', |
| 47 'graphics/fonts/FontFamilyNames.in', | 47 'fonts/FontFamilyNames.in', |
| 48 ], | 48 ], |
| 49 'outputs': [ | 49 'outputs': [ |
| 50 '<(SHARED_INTERMEDIATE_DIR)/blink/FontFamilyNames.cpp', | 50 '<(SHARED_INTERMEDIATE_DIR)/blink/FontFamilyNames.cpp', |
| 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 'fonts/FontFamilyNames.in', |
| 57 '--output_dir', | 57 '--output_dir', |
| 58 '<(SHARED_INTERMEDIATE_DIR)/blink', | 58 '<(SHARED_INTERMEDIATE_DIR)/blink', |
| 59 ], | 59 ], |
| 60 }, | 60 }, |
| 61 { | 61 { |
| 62 'action_name': 'RuntimeEnabledFeatures', | 62 'action_name': 'RuntimeEnabledFeatures', |
| 63 'inputs': [ | 63 'inputs': [ |
| 64 '<@(scripts_for_in_files)', | 64 '<@(scripts_for_in_files)', |
| 65 '../build/scripts/make_runtime_features.py', | 65 '../build/scripts/make_runtime_features.py', |
| 66 'RuntimeEnabledFeatures.in', | 66 'RuntimeEnabledFeatures.in', |
| (...skipping 25 matching lines...) Expand all Loading... |
| 92 '--key-positions=*', | 92 '--key-positions=*', |
| 93 '-D', '-s', '2', | 93 '-D', '-s', '2', |
| 94 '<@(_inputs)', | 94 '<@(_inputs)', |
| 95 '--output-file=<(SHARED_INTERMEDIATE_DIR)/blink/ColorData.cpp', | 95 '--output-file=<(SHARED_INTERMEDIATE_DIR)/blink/ColorData.cpp', |
| 96 ], | 96 ], |
| 97 }, | 97 }, |
| 98 ] | 98 ] |
| 99 }, | 99 }, |
| 100 ], | 100 ], |
| 101 } | 101 } |
| OLD | NEW |