| 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("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//remoting/remoting_host.gni") | 7 import("//remoting/remoting_host.gni") |
| 8 import("//remoting/remoting_locales.gni") | 8 import("//remoting/remoting_locales.gni") |
| 9 import("//remoting/remoting_srcs.gni") | 9 import("//remoting/remoting_srcs.gni") |
| 10 import("//remoting/remoting_version.gni") | 10 import("//remoting/remoting_version.gni") |
| (...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 | 403 |
| 404 if (enable_remoting_host) { | 404 if (enable_remoting_host) { |
| 405 executable("remoting_start_host") { | 405 executable("remoting_start_host") { |
| 406 sources = [ | 406 sources = [ |
| 407 "setup/host_starter.cc", | 407 "setup/host_starter.cc", |
| 408 "setup/host_starter.h", | 408 "setup/host_starter.h", |
| 409 "setup/start_host.cc", | 409 "setup/start_host.cc", |
| 410 ] | 410 ] |
| 411 | 411 |
| 412 deps = [ | 412 deps = [ |
| 413 "//build/config/sanitizers:deps", |
| 413 "//remoting/host/setup", | 414 "//remoting/host/setup", |
| 414 ] | 415 ] |
| 415 | 416 |
| 416 if (enable_webrtc) { | 417 if (enable_webrtc) { |
| 417 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 418 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
| 418 } | 419 } |
| 419 } | 420 } |
| 420 } | 421 } |
| 421 | 422 |
| 422 if (enable_me2me_host) { | 423 if (enable_me2me_host) { |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 if (!is_win) { | 463 if (!is_win) { |
| 463 executable("remoting_me2me_host") { | 464 executable("remoting_me2me_host") { |
| 464 sources = [ | 465 sources = [ |
| 465 "host_main.cc", | 466 "host_main.cc", |
| 466 "host_main.h", | 467 "host_main.h", |
| 467 ] | 468 ] |
| 468 | 469 |
| 469 deps = [ | 470 deps = [ |
| 470 ":remoting_me2me_host_static", | 471 ":remoting_me2me_host_static", |
| 471 ":credits", | 472 ":credits", |
| 473 "//build/config/sanitizers:deps", |
| 472 ] | 474 ] |
| 473 } | 475 } |
| 474 } | 476 } |
| 475 } | 477 } |
| 476 } | 478 } |
| OLD | NEW |