| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//remoting/remoting_host.gni") | 6 import("//remoting/remoting_host.gni") |
| 7 import("//remoting/remoting_srcs.gni") | 7 import("//remoting/remoting_srcs.gni") |
| 8 | 8 |
| 9 source_set("common") { | 9 source_set("common") { |
| 10 sources = rebase_path( | 10 sources = rebase_path( |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 "it2me_native_messaging_host_main.h", | 35 "it2me_native_messaging_host_main.h", |
| 36 ] | 36 ] |
| 37 | 37 |
| 38 configs += [ | 38 configs += [ |
| 39 "//build/config/compiler:wexit_time_destructors", | 39 "//build/config/compiler:wexit_time_destructors", |
| 40 "//remoting:version", | 40 "//remoting:version", |
| 41 ] | 41 ] |
| 42 | 42 |
| 43 deps = [ | 43 deps = [ |
| 44 ":common", | 44 ":common", |
| 45 "//build/config/sanitizers:deps", |
| 45 "//remoting/host", | 46 "//remoting/host", |
| 46 "//remoting/host/native_messaging", | 47 "//remoting/host/native_messaging", |
| 47 "//remoting/proto", | 48 "//remoting/proto", |
| 48 "//ui/gfx", | 49 "//ui/gfx", |
| 49 ] | 50 ] |
| 50 | 51 |
| 51 if (enable_webrtc) { | 52 if (enable_webrtc) { |
| 52 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 53 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
| 53 } | 54 } |
| 54 | 55 |
| 55 if (is_linux) { | 56 if (is_linux) { |
| 56 deps += [ "//build/config/linux/gtk" ] | 57 deps += [ "//build/config/linux/gtk" ] |
| 57 } | 58 } |
| 58 } | 59 } |
| 59 } | 60 } |
| OLD | NEW |