Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Side by Side Diff: remoting/host/setup/BUILD.gn

Issue 2661153003: Moving oauth code from host to base to allow code sharing between host and client. (Closed)
Patch Set: Changing CRD_LOG to VLOG(1). Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 source_set("setup") { 5 source_set("setup") {
6 sources = [ 6 sources = [
7 "daemon_controller.cc", 7 "daemon_controller.cc",
8 "daemon_controller.h", 8 "daemon_controller.h",
9 "daemon_controller_delegate_linux.cc", 9 "daemon_controller_delegate_linux.cc",
10 "daemon_controller_delegate_linux.h", 10 "daemon_controller_delegate_linux.h",
11 "daemon_controller_delegate_mac.h", 11 "daemon_controller_delegate_mac.h",
12 "daemon_controller_delegate_mac.mm", 12 "daemon_controller_delegate_mac.mm",
13 "daemon_controller_delegate_win.cc", 13 "daemon_controller_delegate_win.cc",
14 "daemon_controller_delegate_win.h", 14 "daemon_controller_delegate_win.h",
15 "gaia_oauth_client.cc",
16 "gaia_oauth_client.h",
17 "me2me_native_messaging_host.cc", 15 "me2me_native_messaging_host.cc",
18 "me2me_native_messaging_host.h", 16 "me2me_native_messaging_host.h",
19 "oauth_client.h",
20 "oauth_helper.cc",
21 "oauth_helper.h",
22 "pin_validator.cc", 17 "pin_validator.cc",
23 "pin_validator.h", 18 "pin_validator.h",
24 "service_client.cc", 19 "service_client.cc",
25 "service_client.h", 20 "service_client.h",
26 "test_util.cc", 21 "test_util.cc",
27 "test_util.h", 22 "test_util.h",
28 "win/auth_code_getter.cc", 23 "win/auth_code_getter.cc",
29 "win/auth_code_getter.h", 24 "win/auth_code_getter.h",
30 ] 25 ]
31 26
32 configs += [ 27 configs += [
33 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 28 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
34 "//build/config/compiler:no_size_t_to_int_warning", 29 "//build/config/compiler:no_size_t_to_int_warning",
35 "//build/config/compiler:wexit_time_destructors", 30 "//build/config/compiler:wexit_time_destructors",
36 "//remoting/build/config:version", 31 "//remoting/build/config:version",
37 ] 32 ]
38 33
39 deps = [ 34 deps = [
40 "//base", 35 "//base",
41 "//google_apis", 36 "//google_apis",
Roger Tawa OOO till Jul 10th 2017/02/02 19:09:59 Should this line be removed?
nicholss 2017/02/02 19:41:45 me2me_native_messaging_host and host_starter.cc us
37 "//remoting/base:authorization",
42 "//remoting/host", 38 "//remoting/host",
43 "//remoting/host/native_messaging", 39 "//remoting/host/native_messaging",
44 ] 40 ]
45 41
46 if (is_mac || is_ios) { 42 if (is_mac || is_ios) {
47 deps += [ "//remoting/host/mac:constants" ] 43 deps += [ "//remoting/host/mac:constants" ]
48 } 44 }
49 45
50 if (is_win) { 46 if (is_win) {
51 deps += [ "//remoting/host/win:remoting_lib_idl" ] 47 deps += [ "//remoting/host/win:remoting_lib_idl" ]
52 } 48 }
53 } 49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698