| 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/util/process_version.gni") | 5 import("//build/util/process_version.gni") |
| 6 import("//media/media_options.gni") | 6 import("//media/media_options.gni") |
| 7 import("//remoting/build/config/remoting_build.gni") | 7 import("//remoting/build/config/remoting_build.gni") |
| 8 | 8 |
| 9 group("all_tests") { | 9 group("all_tests") { |
| 10 testonly = true | 10 testonly = true |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 ] | 302 ] |
| 303 | 303 |
| 304 defines = [ "WEBRTC_CHROMIUM_BUILD" ] | 304 defines = [ "WEBRTC_CHROMIUM_BUILD" ] |
| 305 | 305 |
| 306 deps = [ | 306 deps = [ |
| 307 "//base:i18n", | 307 "//base:i18n", |
| 308 "//components/policy/core/common", | 308 "//components/policy/core/common", |
| 309 "//crypto", | 309 "//crypto", |
| 310 "//device/power_save_blocker", | 310 "//device/power_save_blocker", |
| 311 "//google_apis", | 311 "//google_apis", |
| 312 "//ipc", | |
| 313 "//remoting/base", | 312 "//remoting/base", |
| 314 "//remoting/base:authorization", | 313 "//remoting/base:authorization", |
| 315 "//remoting/host/security_key", | 314 "//remoting/host/security_key", |
| 316 "//remoting/protocol", | 315 "//remoting/protocol", |
| 317 "//remoting/resources", | 316 "//remoting/resources", |
| 318 "//ui/base", | 317 "//ui/base", |
| 319 "//ui/events:dom_keycode_converter", | 318 "//ui/events:dom_keycode_converter", |
| 320 "//ui/events/platform", | 319 "//ui/events/platform", |
| 321 ] | 320 ] |
| 322 | 321 |
| 323 public_deps = [] | 322 public_deps = [ |
| 323 "//ipc", |
| 324 ] |
| 324 | 325 |
| 325 if (!is_ios) { | 326 if (!is_ios) { |
| 326 deps += [ "//components/policy:generated" ] | 327 deps += [ "//components/policy:generated" ] |
| 327 } | 328 } |
| 328 | 329 |
| 329 if (is_linux && !is_chromeos) { | 330 if (is_linux && !is_chromeos) { |
| 330 libs += [ "pam" ] | 331 libs += [ "pam" ] |
| 331 } | 332 } |
| 332 | 333 |
| 333 if (use_x11) { | 334 if (use_x11) { |
| (...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 833 group("remoting_me2me_host_archive") { | 834 group("remoting_me2me_host_archive") { |
| 834 deps = [ | 835 deps = [ |
| 835 "//remoting/host/installer/mac:remoting_me2me_host_archive", | 836 "//remoting/host/installer/mac:remoting_me2me_host_archive", |
| 836 ] | 837 ] |
| 837 } | 838 } |
| 838 } else { | 839 } else { |
| 839 group("remoting_me2me_host_archive") { | 840 group("remoting_me2me_host_archive") { |
| 840 } | 841 } |
| 841 } | 842 } |
| 842 } | 843 } |
| OLD | NEW |