| 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 587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 598 "setup/start_host_entry_point.cc", | 598 "setup/start_host_entry_point.cc", |
| 599 ] | 599 ] |
| 600 | 600 |
| 601 deps = [ | 601 deps = [ |
| 602 "//build/config/sanitizers:deps", | 602 "//build/config/sanitizers:deps", |
| 603 ] | 603 ] |
| 604 | 604 |
| 605 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 605 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 606 | 606 |
| 607 if (is_win) { | 607 if (is_win) { |
| 608 defines = host_predefines + [ "BINARY=BINARY_REMOTING_START_HOST" ] | 608 defines = host_predefines + |
| 609 [ "REMOTING_HOST_BINARY=BINARY_REMOTING_START_HOST" ] |
| 609 | 610 |
| 610 deps += [ | 611 deps += [ |
| 611 "//build/win:default_exe_manifest", | 612 "//build/win:default_exe_manifest", |
| 612 "//remoting/host/win:remoting_core", | 613 "//remoting/host/win:remoting_core", |
| 613 "//remoting/host/win:remoting_windows_resources", | 614 "//remoting/host/win:remoting_windows_resources", |
| 614 ] | 615 ] |
| 615 } else { | 616 } else { |
| 616 sources += [ | 617 sources += [ |
| 617 "setup/host_starter.cc", | 618 "setup/host_starter.cc", |
| 618 "setup/host_starter.h", | 619 "setup/host_starter.h", |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 837 group("remoting_me2me_host_archive") { | 838 group("remoting_me2me_host_archive") { |
| 838 deps = [ | 839 deps = [ |
| 839 "//remoting/host/installer/mac:remoting_me2me_host_archive", | 840 "//remoting/host/installer/mac:remoting_me2me_host_archive", |
| 840 ] | 841 ] |
| 841 } | 842 } |
| 842 } else { | 843 } else { |
| 843 group("remoting_me2me_host_archive") { | 844 group("remoting_me2me_host_archive") { |
| 844 } | 845 } |
| 845 } | 846 } |
| 846 } | 847 } |
| OLD | NEW |