| 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 source_set("setup") { | 5 source_set("setup") { |
| 6 sources = [ | 6 sources = [ |
| 7 "daemon_controller.cc", | 7 "daemon_controller.cc", |
| 8 "daemon_controller.h", | 8 "daemon_controller.h", |
| 9 "daemon_controller_delegate_linux.cc", | 9 "daemon_controller_delegate_linux.cc", |
| 10 "daemon_controller_delegate_linux.h", | 10 "daemon_controller_delegate_linux.h", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 ] | 37 ] |
| 38 | 38 |
| 39 deps = [ | 39 deps = [ |
| 40 "//base", | 40 "//base", |
| 41 "//google_apis", | 41 "//google_apis", |
| 42 "//remoting/host", | 42 "//remoting/host", |
| 43 "//remoting/host/native_messaging", | 43 "//remoting/host/native_messaging", |
| 44 ] | 44 ] |
| 45 | 45 |
| 46 if (is_win) { | 46 if (is_win) { |
| 47 deps += [ "//remoting/host/win:remoting_lib_idl" ] | 47 deps += [ "//remoting/host:remoting_lib_idl" ] |
| 48 } | 48 } |
| 49 } | 49 } |
| OLD | NEW |