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 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
706 'type': 'none', | 706 'type': 'none', |
707 'conditions': [ | 707 'conditions': [ |
708 ['debug_devtools==0', { # Release | 708 ['debug_devtools==0', { # Release |
709 'actions': [{ | 709 'actions': [{ |
710 'action_name': 'build_script_formatter_worker_module', | 710 'action_name': 'build_script_formatter_worker_module', |
711 'script_name': 'scripts/concatenate_module_scripts.py', | 711 'script_name': 'scripts/concatenate_module_scripts.py', |
712 'input_file': 'front_end/script_formatter_worker/module. json', | 712 'input_file': 'front_end/script_formatter_worker/module. json', |
713 'inputs': [ | 713 'inputs': [ |
714 '<@(_script_name)', | 714 '<@(_script_name)', |
715 '<@(_input_file)', | 715 '<@(_input_file)', |
716 '<@(devtools_script_formatter_worker_js_files)', | |
716 '<@(devtools_uglify_files)' | 717 '<@(devtools_uglify_files)' |
717 ], | 718 ], |
718 'outputs': ['<(PRODUCT_DIR)/resources/inspector/script_f ormatter_worker.js'], | 719 'outputs': ['<(PRODUCT_DIR)/resources/inspector/script_f ormatter_worker.js'], |
719 'action': ['python', '<@(_script_name)', '<@(_input_file )', '<@(_outputs)'], | 720 'action': ['python', '<@(_script_name)', '<@(_input_file )', '<@(_outputs)'], |
720 }], | 721 }], |
721 }, | 722 }, |
722 { # Debug | 723 { # Debug |
723 'copies': [ | 724 'copies': [ |
724 { | 725 { |
725 'destination': '<(PRODUCT_DIR)/resources/inspector/s cript_formatter_worker', | 726 'destination': '<(PRODUCT_DIR)/resources/inspector/s cript_formatter_worker', |
726 'files': [ | 727 'files': [ |
728 # FIXME: This will excessively copy files from c ommon/ and cm/ folders into worker folder. | |
apavlov
2014/08/18 13:23:17
...folder, which is fine for the debug mode.
lushnikov
2014/08/18 13:27:07
Done.
| |
727 '<@(devtools_script_formatter_worker_js_files)', | 729 '<@(devtools_script_formatter_worker_js_files)', |
728 'front_end/script_formatter_worker/module.json', | 730 'front_end/script_formatter_worker/module.json', |
729 ], | 731 ], |
730 }, | 732 }, |
731 { | 733 { |
732 'destination': '<(PRODUCT_DIR)/resources/inspector/U glifyJS', | 734 'destination': '<(PRODUCT_DIR)/resources/inspector/U glifyJS', |
733 'files': [ | 735 'files': [ |
734 '<@(devtools_uglify_files)', | 736 '<@(devtools_uglify_files)', |
735 ], | 737 ], |
736 } | 738 } |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
952 '<@(devtools_module_json_files)', | 954 '<@(devtools_module_json_files)', |
953 ], | 955 ], |
954 'outputs': ['<(blink_devtools_output_dir)/Runtime.js'], | 956 'outputs': ['<(blink_devtools_output_dir)/Runtime.js'], |
955 'action': ['python', '<@(_script_name)', '<@(_input_file )', '<@(_outputs)', '<@(devtools_module_json_files)'], | 957 'action': ['python', '<@(_script_name)', '<@(_input_file )', '<@(_outputs)', '<@(devtools_module_json_files)'], |
956 }], | 958 }], |
957 }, | 959 }, |
958 ], | 960 ], |
959 }], | 961 }], |
960 ], # conditions | 962 ], # conditions |
961 } | 963 } |
OLD | NEW |