| 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'forwarder2', | 8 'target_name': 'forwarder2', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 '-fPIE', | 32 '-fPIE', |
| 33 ], | 33 ], |
| 34 'ldflags': [ | 34 'ldflags': [ |
| 35 '-pie', | 35 '-pie', |
| 36 ], | 36 ], |
| 37 }], | 37 }], |
| 38 ], | 38 ], |
| 39 'sources': [ | 39 'sources': [ |
| 40 'command.cc', | 40 'command.cc', |
| 41 'common.cc', | 41 'common.cc', |
| 42 'daemon.cc', |
| 42 'device_controller.cc', | 43 'device_controller.cc', |
| 43 'device_forwarder_main.cc', | 44 'device_forwarder_main.cc', |
| 44 'device_listener.cc', | 45 'device_listener.cc', |
| 45 'forwarder.cc', | 46 'forwarder.cc', |
| 46 'pipe_notifier.cc', | 47 'pipe_notifier.cc', |
| 47 'socket.cc', | 48 'socket.cc', |
| 48 'thread.cc', | 49 'thread.cc', |
| 49 ], | 50 ], |
| 50 }, | 51 }, |
| 51 { | 52 { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 66 'forwarder.cc', | 67 'forwarder.cc', |
| 67 'host_controller.cc', | 68 'host_controller.cc', |
| 68 'host_forwarder_main.cc', | 69 'host_forwarder_main.cc', |
| 69 'pipe_notifier.cc', | 70 'pipe_notifier.cc', |
| 70 'socket.cc', | 71 'socket.cc', |
| 71 'thread.cc', | 72 'thread.cc', |
| 72 ], | 73 ], |
| 73 }, | 74 }, |
| 74 ], | 75 ], |
| 75 } | 76 } |
| OLD | NEW |