| OLD | NEW |
| 1 # | 1 # |
| 2 # Copyright (C) 2009 Google Inc. All rights reserved. | 2 # Copyright (C) 2009 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 'actions': [ | 109 'actions': [ |
| 110 { | 110 { |
| 111 'action_name': 'generateInspectorInstrumentation', | 111 'action_name': 'generateInspectorInstrumentation', |
| 112 'inputs': [ | 112 'inputs': [ |
| 113 # The python script in action below. | 113 # The python script in action below. |
| 114 'inspector/CodeGeneratorInstrumentation.py', | 114 'inspector/CodeGeneratorInstrumentation.py', |
| 115 # Input file for the script. | 115 # Input file for the script. |
| 116 'inspector/InspectorInstrumentation.idl', | 116 'inspector/InspectorInstrumentation.idl', |
| 117 ], | 117 ], |
| 118 'outputs': [ | 118 'outputs': [ |
| 119 '<(blink_core_output_dir)/InspectorCanvasInstrumentationInl.h', | |
| 120 '<(blink_core_output_dir)/InspectorConsoleInstrumentationInl.h', | 119 '<(blink_core_output_dir)/InspectorConsoleInstrumentationInl.h', |
| 121 '<(blink_core_output_dir)/InspectorInstrumentationInl.h', | 120 '<(blink_core_output_dir)/InspectorInstrumentationInl.h', |
| 122 '<(blink_core_output_dir)/InspectorOverridesInl.h', | 121 '<(blink_core_output_dir)/InspectorOverridesInl.h', |
| 123 '<(blink_core_output_dir)/InstrumentingAgentsInl.h', | 122 '<(blink_core_output_dir)/InstrumentingAgentsInl.h', |
| 124 '<(blink_core_output_dir)/InspectorInstrumentationImpl.cpp', | 123 '<(blink_core_output_dir)/InspectorInstrumentationImpl.cpp', |
| 125 ], | 124 ], |
| 126 'action': [ | 125 'action': [ |
| 127 'python', | 126 'python', |
| 128 'inspector/CodeGeneratorInstrumentation.py', | 127 'inspector/CodeGeneratorInstrumentation.py', |
| 129 'inspector/InspectorInstrumentation.idl', | 128 'inspector/InspectorInstrumentation.idl', |
| (...skipping 723 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 853 'libraries': [ | 852 'libraries': [ |
| 854 '<!@(pkg-config --libs ipp|sed s/-L//)/libipps_l.a', | 853 '<!@(pkg-config --libs ipp|sed s/-L//)/libipps_l.a', |
| 855 '<!@(pkg-config --libs ipp|sed s/-L//)/libippcore_l.a', | 854 '<!@(pkg-config --libs ipp|sed s/-L//)/libippcore_l.a', |
| 856 ] | 855 ] |
| 857 }, | 856 }, |
| 858 }], | 857 }], |
| 859 ], | 858 ], |
| 860 }, | 859 }, |
| 861 ], # targets | 860 ], # targets |
| 862 } | 861 } |
| OLD | NEW |