| 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/config/win/manifest.gni") | 7 import("//build/config/win/manifest.gni") |
| 8 import("//build/util/version.gni") | 8 import("//build/util/version.gni") |
| 9 import("//remoting/remoting_enable.gni") | 9 import("//remoting/remoting_enable.gni") |
| 10 import("//remoting/remoting_locales.gni") | 10 import("//remoting/remoting_locales.gni") |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 "fake_desktop_environment.h", | 239 "fake_desktop_environment.h", |
| 240 "fake_host_extension.cc", | 240 "fake_host_extension.cc", |
| 241 "fake_host_extension.h", | 241 "fake_host_extension.h", |
| 242 "fake_host_status_monitor.h", | 242 "fake_host_status_monitor.h", |
| 243 "fake_host_status_monitor.h", | 243 "fake_host_status_monitor.h", |
| 244 "fake_mouse_cursor_monitor.cc", | 244 "fake_mouse_cursor_monitor.cc", |
| 245 "fake_mouse_cursor_monitor.h", | 245 "fake_mouse_cursor_monitor.h", |
| 246 "fake_oauth_token_getter.cc", | 246 "fake_oauth_token_getter.cc", |
| 247 "fake_oauth_token_getter.h", | 247 "fake_oauth_token_getter.h", |
| 248 "host_mock_objects.cc", | 248 "host_mock_objects.cc", |
| 249 "host_mock_objects.h", |
| 249 "security_key/fake_ipc_gnubby_auth_handler.cc", | 250 "security_key/fake_ipc_gnubby_auth_handler.cc", |
| 250 "security_key/fake_ipc_gnubby_auth_handler.h", | 251 "security_key/fake_ipc_gnubby_auth_handler.h", |
| 251 "security_key/fake_remote_security_key_ipc_client.cc", | 252 "security_key/fake_remote_security_key_ipc_client.cc", |
| 252 "security_key/fake_remote_security_key_ipc_client.h", | 253 "security_key/fake_remote_security_key_ipc_client.h", |
| 253 "security_key/fake_remote_security_key_ipc_server.cc", | 254 "security_key/fake_remote_security_key_ipc_server.cc", |
| 254 "security_key/fake_remote_security_key_ipc_server.h", | 255 "security_key/fake_remote_security_key_ipc_server.h", |
| 255 "security_key/fake_remote_security_key_message_reader.cc", | 256 "security_key/fake_remote_security_key_message_reader.cc", |
| 256 "security_key/fake_remote_security_key_message_reader.h", | 257 "security_key/fake_remote_security_key_message_reader.h", |
| 257 "security_key/fake_remote_security_key_message_writer.cc", | 258 "security_key/fake_remote_security_key_message_writer.cc", |
| 258 "security_key/fake_remote_security_key_message_writer.h", | 259 "security_key/fake_remote_security_key_message_writer.h", |
| 259 "setup/mock_oauth_client.cc", | 260 "setup/mock_oauth_client.cc", |
| 260 "setup/mock_oauth_client.h", | 261 "setup/mock_oauth_client.h", |
| 261 ] | 262 ] |
| 262 | 263 |
| 263 configs += [ "//remoting:version" ] | 264 configs += [ "//remoting:version" ] |
| 264 | 265 |
| 265 deps = [ | 266 deps = [ |
| 266 "//remoting/proto", | 267 "//remoting/proto", |
| 267 "//testing/gmock", | 268 "//testing/gmock", |
| 268 "//testing/gtest", | 269 "//testing/gtest", |
| 269 ] | 270 ] |
| 270 public_deps = [ | 271 public_deps = [ |
| 271 ":host", | 272 ":host", |
| 273 "//third_party/protobuf:protobuf_lite", |
| 272 ] | 274 ] |
| 273 | 275 |
| 274 if (enable_webrtc) { | 276 if (enable_webrtc) { |
| 275 public_deps += [ | 277 public_deps += [ |
| 276 "//third_party/libjingle:libjingle_webrtc", | 278 "//third_party/libjingle:libjingle_webrtc", |
| 277 "//third_party/webrtc/modules/desktop_capture", | 279 "//third_party/webrtc/modules/desktop_capture", |
| 278 ] | 280 ] |
| 279 } | 281 } |
| 280 } | 282 } |
| 281 | 283 |
| (...skipping 862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1144 "--target_arch", | 1146 "--target_arch", |
| 1145 "$target_cpu", | 1147 "$target_cpu", |
| 1146 rebase_path("$root_out_dir/remoting-me2me-host-$current_os.zip", | 1148 rebase_path("$root_out_dir/remoting-me2me-host-$current_os.zip", |
| 1147 root_build_dir), | 1149 root_build_dir), |
| 1148 rebase_path(outputs[0], root_build_dir), | 1150 rebase_path(outputs[0], root_build_dir), |
| 1149 ] | 1151 ] |
| 1150 } | 1152 } |
| 1151 } | 1153 } |
| 1152 } | 1154 } |
| 1153 } | 1155 } |
| OLD | NEW |