Chromium Code Reviews| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 77 if (is_linux) { | 77 if (is_linux) { |
| 78 # These will already be filtered out on non-Linux. | 78 # These will already be filtered out on non-Linux. |
| 79 sources -= [ | 79 sources -= [ |
| 80 "linux/x_server_clipboard.cc", | 80 "linux/x_server_clipboard.cc", |
| 81 "linux/x_server_clipboard.h", | 81 "linux/x_server_clipboard.h", |
| 82 ] | 82 ] |
| 83 } | 83 } |
| 84 } | 84 } |
| 85 | 85 |
| 86 if (is_chromeos) { | 86 if (is_chromeos) { |
| 87 sources -= [ | |
| 88 "me2me_desktop_environment.cc", | |
| 89 "me2me_desktop_environment.h", | |
| 90 ] | |
|
Dirk Pranke
2015/04/23 01:19:17
I don't understand why, but when these files are l
garykac
2015/04/27 18:27:02
Agreed. But that seems out of scope for this cl.
Dirk Pranke
2015/04/27 19:52:25
Will do.
| |
| 87 deps += [ | 91 deps += [ |
| 88 "//cc", | 92 "//cc", |
| 89 "//ppapi/host", | 93 "//ppapi/host", |
| 90 "//skia", | 94 "//skia", |
| 91 "//ui/aura", | 95 "//ui/aura", |
| 92 "//ui/compositor", | 96 "//ui/compositor", |
| 93 "//ui/events", | 97 "//ui/events", |
| 94 "//ui/views", | 98 "//ui/views", |
| 95 ] | 99 ] |
| 96 | 100 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 139 | 143 |
| 140 if (is_win) { | 144 if (is_win) { |
| 141 deps += [ | 145 deps += [ |
| 142 ":messages", | 146 ":messages", |
| 143 ":remoting_lib_idl", | 147 ":remoting_lib_idl", |
| 144 ] | 148 ] |
| 145 } | 149 } |
| 146 | 150 |
| 147 if (enable_webrtc) { | 151 if (enable_webrtc) { |
| 148 deps += [ | 152 deps += [ |
| 153 "//third_party/libjingle:libjingle_webrtc", | |
|
Dirk Pranke
2015/04/23 01:19:17
libpeerconnection depends //third_party/libjingle:
| |
| 149 "//third_party/libjingle:libpeerconnection", | 154 "//third_party/libjingle:libpeerconnection", |
| 150 "//third_party/webrtc/modules/desktop_capture", | 155 "//third_party/webrtc/modules/desktop_capture", |
| 151 ] | 156 ] |
| 152 | 157 |
| 153 sources += | 158 sources += |
| 154 rebase_path(remoting_host_srcs_gypi_values.remoting_cast_sources, | 159 rebase_path(remoting_host_srcs_gypi_values.remoting_cast_sources, |
| 155 ".", | 160 ".", |
| 156 "//remoting") | 161 "//remoting") |
| 157 } | 162 } |
| 158 } | 163 } |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 413 "host_main.h", | 418 "host_main.h", |
| 414 ] | 419 ] |
| 415 | 420 |
| 416 deps = [ | 421 deps = [ |
| 417 ":remoting_me2me_host_static", | 422 ":remoting_me2me_host_static", |
| 418 ] | 423 ] |
| 419 } | 424 } |
| 420 } | 425 } |
| 421 } | 426 } |
| 422 } | 427 } |
| OLD | NEW |