| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 import("//remoting/build/config/remoting_build.gni") | 5 import("//remoting/build/config/remoting_build.gni") |
| 6 | 6 |
| 7 group("all_tests") { | 7 group("all_tests") { |
| 8 testonly = true | 8 testonly = true |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 "x11_util.cc", | 83 "x11_util.cc", |
| 84 "x11_util.h", | 84 "x11_util.h", |
| 85 "x_server_clipboard.cc", | 85 "x_server_clipboard.cc", |
| 86 "x_server_clipboard.h", | 86 "x_server_clipboard.h", |
| 87 ] | 87 ] |
| 88 deps = [ | 88 deps = [ |
| 89 "//third_party/webrtc/modules/desktop_capture", | 89 "//third_party/webrtc/modules/desktop_capture", |
| 90 ] | 90 ] |
| 91 } | 91 } |
| 92 | 92 |
| 93 target("executable", "remoting_native_messaging_host") { | 93 executable("remoting_native_messaging_host") { |
| 94 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 94 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 95 | 95 |
| 96 sources = [ | 96 sources = [ |
| 97 "//remoting/host/setup/me2me_native_messaging_host_entry_point.cc", | 97 "//remoting/host/setup/me2me_native_messaging_host_entry_point.cc", |
| 98 "//remoting/host/setup/me2me_native_messaging_host_main.cc", | 98 "//remoting/host/setup/me2me_native_messaging_host_main.cc", |
| 99 "//remoting/host/setup/me2me_native_messaging_host_main.h", | 99 "//remoting/host/setup/me2me_native_messaging_host_main.h", |
| 100 ] | 100 ] |
| 101 | 101 |
| 102 deps = [ | 102 deps = [ |
| 103 "//base", | 103 "//base", |
| 104 "//build/config:exe_and_shlib_deps", |
| 104 "//net", | 105 "//net", |
| 105 "//remoting/base:breakpad", | 106 "//remoting/base:breakpad", |
| 106 "//remoting/host", | 107 "//remoting/host", |
| 107 "//remoting/host:remoting_infoplist_strings", | 108 "//remoting/host:remoting_infoplist_strings", |
| 108 "//remoting/host/native_messaging", | 109 "//remoting/host/native_messaging", |
| 109 "//remoting/host/setup", | 110 "//remoting/host/setup", |
| 110 ] | 111 ] |
| 111 | 112 |
| 112 # The |major|, |build| and |patch| versions are inherited from Chrome. | 113 # The |major|, |build| and |patch| versions are inherited from Chrome. |
| 113 # Since Chrome's |minor| version is always '0', we replace it with a | 114 # Since Chrome's |minor| version is always '0', we replace it with a |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 "//remoting/resources", | 146 "//remoting/resources", |
| 146 "//skia", | 147 "//skia", |
| 147 "//testing/gmock", | 148 "//testing/gmock", |
| 148 "//testing/gtest", | 149 "//testing/gtest", |
| 149 ] | 150 ] |
| 150 | 151 |
| 151 if (!is_ios) { | 152 if (!is_ios) { |
| 152 deps += [ "//components/policy/core/browser:test_support" ] | 153 deps += [ "//components/policy/core/browser:test_support" ] |
| 153 } | 154 } |
| 154 } | 155 } |
| OLD | NEW |