| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { |
| 7 'chromium_code': 1, |
| 8 }, |
| 6 'targets': [ | 9 'targets': [ |
| 7 { | 10 { |
| 8 'target_name': 'forwarder2', | 11 'target_name': 'forwarder2', |
| 9 'type': 'none', | 12 'type': 'none', |
| 10 'dependencies': [ | 13 'dependencies': [ |
| 11 'device_forwarder', | 14 'device_forwarder', |
| 12 'host_forwarder#host', | 15 'host_forwarder#host', |
| 13 ], | 16 ], |
| 14 # For the component build, ensure dependent shared libraries are stripped | 17 # For the component build, ensure dependent shared libraries are stripped |
| 15 # and put alongside forwarder to simplify pushing to the device. | 18 # and put alongside forwarder to simplify pushing to the device. |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 'forwarder.cc', | 65 'forwarder.cc', |
| 63 'forwarders_manager.cc', | 66 'forwarders_manager.cc', |
| 64 'host_controller.cc', | 67 'host_controller.cc', |
| 65 'host_forwarder_main.cc', | 68 'host_forwarder_main.cc', |
| 66 'pipe_notifier.cc', | 69 'pipe_notifier.cc', |
| 67 'socket.cc', | 70 'socket.cc', |
| 68 ], | 71 ], |
| 69 }, | 72 }, |
| 70 ], | 73 ], |
| 71 } | 74 } |
| OLD | NEW |