| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'includes': [ | 6 'includes': [ |
| 7 '../build/common_untrusted.gypi', | 7 '../build/common_untrusted.gypi', |
| 8 ], | 8 ], |
| 9 | 9 |
| 10 'variables': { | 10 'variables': { |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 'conditions': [ | 48 'conditions': [ |
| 49 ['run_jscompile != 0', { | 49 ['run_jscompile != 0', { |
| 50 'variables': { | 50 'variables': { |
| 51 'success_stamp': '<(PRODUCT_DIR)/<(_target_name).stamp', | 51 'success_stamp': '<(PRODUCT_DIR)/<(_target_name).stamp', |
| 52 }, | 52 }, |
| 53 'actions': [ | 53 'actions': [ |
| 54 { | 54 { |
| 55 'action_name': 'jscompile remoting_key_tester', | 55 'action_name': 'jscompile remoting_key_tester', |
| 56 'inputs': [ | 56 'inputs': [ |
| 57 '<@(remoting_key_tester_js_files)', | 57 '<@(remoting_key_tester_js_files)', |
| 58 'webapp/js_proto/chrome_proto.js' | 58 'webapp/js_proto/chrome_proto.js', |
| 59 'webapp/js_proto/chrome_event_proto.js', |
| 59 ], | 60 ], |
| 60 'outputs': [ | 61 'outputs': [ |
| 61 '<(success_stamp)', | 62 '<(success_stamp)', |
| 62 ], | 63 ], |
| 63 'action': [ | 64 'action': [ |
| 64 'python', '../third_party/closure_compiler/checker.py', | 65 'python', '../third_party/closure_compiler/checker.py', |
| 65 '--strict', | 66 '--strict', |
| 66 '--no-single-file', | 67 '--no-single-file', |
| 67 '--success-stamp', '<(success_stamp)', | 68 '--success-stamp', '<(success_stamp)', |
| 68 '<@(remoting_key_tester_js_files)', | 69 '<@(remoting_key_tester_js_files)', |
| 69 'webapp/js_proto/chrome_proto.js' | 70 'webapp/js_proto/chrome_proto.js', |
| 71 'webapp/js_proto/chrome_event_proto.js', |
| 70 ], | 72 ], |
| 71 }, | 73 }, |
| 72 ], # actions | 74 ], # actions |
| 73 }], | 75 }], |
| 74 ], | 76 ], |
| 75 }, # end of target 'remoting_key_tester_jscompile' | 77 }, # end of target 'remoting_key_tester_jscompile' |
| 76 | 78 |
| 77 { | 79 { |
| 78 'target_name': 'remoting_key_tester_pexe', | 80 'target_name': 'remoting_key_tester_pexe', |
| 79 'type': 'none', | 81 'type': 'none', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 96 ], | 98 ], |
| 97 'dependencies': [ | 99 'dependencies': [ |
| 98 # TODO(mseaborn): Remove need for this (https://crbug.com/456902). | 100 # TODO(mseaborn): Remove need for this (https://crbug.com/456902). |
| 99 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | 101 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
| 100 ], | 102 ], |
| 101 }, # end of target 'remoting_key_tester_pexe' | 103 }, # end of target 'remoting_key_tester_pexe' |
| 102 ], | 104 ], |
| 103 }] | 105 }] |
| 104 ], | 106 ], |
| 105 } | 107 } |
| OLD | NEW |