| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 | 65 |
| 66 deps = [ | 66 deps = [ |
| 67 "//base:i18n", | 67 "//base:i18n", |
| 68 "//components/policy:policy_component_common", | 68 "//components/policy:policy_component_common", |
| 69 "//crypto", | 69 "//crypto", |
| 70 "//google_apis", | 70 "//google_apis", |
| 71 "//ipc", | 71 "//ipc", |
| 72 "//remoting/base", | 72 "//remoting/base", |
| 73 "//remoting/protocol", | 73 "//remoting/protocol", |
| 74 "//remoting/resources", | 74 "//remoting/resources", |
| 75 "//ui/base", |
| 75 "//ui/events/platform", | 76 "//ui/events/platform", |
| 76 "//ui/events:dom_keycode_converter", | 77 "//ui/events:dom_keycode_converter", |
| 77 ] | 78 ] |
| 78 | 79 |
| 79 if (enable_configuration_policy) { | 80 if (enable_configuration_policy) { |
| 80 deps += [ "//components/policy:policy" ] | 81 deps += [ "//components/policy:policy" ] |
| 81 } | 82 } |
| 82 | 83 |
| 83 if (is_linux && !is_chromeos) { | 84 if (is_linux && !is_chromeos) { |
| 84 libs += [ "pam" ] | 85 libs += [ "pam" ] |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 "mouse_shape_pump_unittest.cc", | 277 "mouse_shape_pump_unittest.cc", |
| 277 "native_messaging/native_messaging_reader_unittest.cc", | 278 "native_messaging/native_messaging_reader_unittest.cc", |
| 278 "native_messaging/native_messaging_writer_unittest.cc", | 279 "native_messaging/native_messaging_writer_unittest.cc", |
| 279 "pairing_registry_delegate_linux_unittest.cc", | 280 "pairing_registry_delegate_linux_unittest.cc", |
| 280 "pairing_registry_delegate_win_unittest.cc", | 281 "pairing_registry_delegate_win_unittest.cc", |
| 281 "pin_hash_unittest.cc", | 282 "pin_hash_unittest.cc", |
| 282 "policy_watcher_unittest.cc", | 283 "policy_watcher_unittest.cc", |
| 283 "register_support_host_request_unittest.cc", | 284 "register_support_host_request_unittest.cc", |
| 284 "remote_input_filter_unittest.cc", | 285 "remote_input_filter_unittest.cc", |
| 285 "resizing_host_observer_unittest.cc", | 286 "resizing_host_observer_unittest.cc", |
| 287 "resources_unittest.cc", |
| 286 "screen_resolution_unittest.cc", | 288 "screen_resolution_unittest.cc", |
| 287 "server_log_entry_host_unittest.cc", | 289 "server_log_entry_host_unittest.cc", |
| 288 "setup/me2me_native_messaging_host_unittest.cc", | 290 "setup/me2me_native_messaging_host_unittest.cc", |
| 289 "setup/oauth_helper_unittest.cc", | 291 "setup/oauth_helper_unittest.cc", |
| 290 "setup/pin_validator_unittest.cc", | 292 "setup/pin_validator_unittest.cc", |
| 291 "shaped_desktop_capturer_unittest.cc", | 293 "shaped_desktop_capturer_unittest.cc", |
| 292 "third_party_auth_config_unittest.cc", | 294 "third_party_auth_config_unittest.cc", |
| 293 "token_validator_factory_impl_unittest.cc", | 295 "token_validator_factory_impl_unittest.cc", |
| 294 "touch_injector_win_unittest.cc", | 296 "touch_injector_win_unittest.cc", |
| 295 "video_frame_pump_unittest.cc", | 297 "video_frame_pump_unittest.cc", |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 ] | 467 ] |
| 466 | 468 |
| 467 deps = [ | 469 deps = [ |
| 468 ":remoting_me2me_host_static", | 470 ":remoting_me2me_host_static", |
| 469 ":credits", | 471 ":credits", |
| 470 ] | 472 ] |
| 471 } | 473 } |
| 472 } | 474 } |
| 473 } | 475 } |
| 474 } | 476 } |
| OLD | NEW |