| 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("//build/util/version.gni") | 7 import("//build/util/version.gni") |
| 8 import("//remoting/remoting_enable.gni") | 8 import("//remoting/remoting_enable.gni") |
| 9 import("//remoting/remoting_locales.gni") | 9 import("//remoting/remoting_locales.gni") |
| 10 import("//remoting/remoting_options.gni") | 10 import("//remoting/remoting_options.gni") |
| (...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 822 "/MANIFEST:EMBED", | 822 "/MANIFEST:EMBED", |
| 823 "/MANIFESTINPUT:" + | 823 "/MANIFESTINPUT:" + |
| 824 rebase_path("win/dpi_aware.manifest", root_build_dir), | 824 rebase_path("win/dpi_aware.manifest", root_build_dir), |
| 825 "/ENTRY:HostEntryPoint", | 825 "/ENTRY:HostEntryPoint", |
| 826 | 826 |
| 827 # "/NODEFAULTLIB", | 827 # "/NODEFAULTLIB", |
| 828 ] | 828 ] |
| 829 } | 829 } |
| 830 } else { | 830 } else { |
| 831 executable("remoting_me2me_host") { | 831 executable("remoting_me2me_host") { |
| 832 configs += [ "//remoting:version" ] |
| 833 |
| 832 sources = [ | 834 sources = [ |
| 833 "host_main.cc", | 835 "host_main.cc", |
| 834 "host_main.h", | 836 "host_main.h", |
| 835 ] | 837 ] |
| 836 | 838 |
| 837 if (is_mac && is_chrome_branded && is_official_build) { | 839 if (is_mac && is_chrome_branded && is_official_build) { |
| 838 defines = [ "REMOTING_ENABLE_BREAKPAD" ] | 840 defines = [ "REMOTING_ENABLE_BREAKPAD" ] |
| 839 } | 841 } |
| 840 | 842 |
| 841 deps = [ | 843 deps = [ |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 965 "//remoting/resources", | 967 "//remoting/resources", |
| 966 "//third_party/icu:icudata", | 968 "//third_party/icu:icudata", |
| 967 ] | 969 ] |
| 968 } | 970 } |
| 969 } else { | 971 } else { |
| 970 group("remoting_me2me_host_archive") { | 972 group("remoting_me2me_host_archive") { |
| 971 } | 973 } |
| 972 } | 974 } |
| 973 } | 975 } |
| 974 } | 976 } |
| OLD | NEW |