| 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': { |
| 11 'remoting_key_tester_js_files': [ | 11 'remoting_key_tester_js_files': [ |
| 12 'tools/javascript_key_tester/background.js', | 12 'tools/javascript_key_tester/background.js', |
| 13 'tools/javascript_key_tester/chord_tracker.js', | 13 'tools/javascript_key_tester/chord_tracker.js', |
| 14 'tools/javascript_key_tester/event_listeners.js', | 14 'tools/javascript_key_tester/event_listeners.js', |
| 15 'tools/javascript_key_tester/keyboard_map.js', | |
| 16 'tools/javascript_key_tester/main.js', | 15 'tools/javascript_key_tester/main.js', |
| 17 ], | 16 ], |
| 18 }, | 17 }, |
| 19 | 18 |
| 20 'conditions': [ | 19 'conditions': [ |
| 21 ['disable_nacl==0 and disable_nacl_untrusted==0', { | 20 ['disable_nacl==0 and disable_nacl_untrusted==0', { |
| 22 'targets': [ | 21 'targets': [ |
| 23 { | 22 { |
| 24 'target_name': 'remoting_key_tester', | 23 'target_name': 'remoting_key_tester', |
| 25 'type': 'none', | 24 'type': 'none', |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 }, | 92 }, |
| 94 'link_flags': [ | 93 'link_flags': [ |
| 95 '-lppapi_stub', | 94 '-lppapi_stub', |
| 96 '-lppapi_cpp', | 95 '-lppapi_cpp', |
| 97 ], | 96 ], |
| 98 }, # end of target 'remoting_key_tester_pexe' | 97 }, # end of target 'remoting_key_tester_pexe' |
| 99 ], | 98 ], |
| 100 }] | 99 }] |
| 101 ], | 100 ], |
| 102 } | 101 } |
| OLD | NEW |