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

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

Issue 2273383002: Cleaning up remoting GN build files. Condense the sources. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleaning up remoting GN build files. Condense the sources. Created 4 years, 3 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 import("//remoting/remoting_srcs.gni")
6
7 source_set("setup") { 5 source_set("setup") {
8 sources = 6 sources = [
9 rebase_path(remoting_host_srcs_gypi_values.remoting_host_setup_sources, 7 "daemon_controller.cc",
10 ".", 8 "daemon_controller.h",
11 "//remoting") 9 "daemon_controller_delegate_linux.cc",
10 "daemon_controller_delegate_linux.h",
11 "daemon_controller_delegate_mac.h",
12 "daemon_controller_delegate_mac.mm",
13 "daemon_controller_delegate_win.cc",
14 "daemon_controller_delegate_win.h",
15 "gaia_oauth_client.cc",
16 "gaia_oauth_client.h",
17 "me2me_native_messaging_host.cc",
18 "me2me_native_messaging_host.h",
19 "oauth_client.h",
20 "oauth_helper.cc",
21 "oauth_helper.h",
22 "pin_validator.cc",
23 "pin_validator.h",
24 "service_client.cc",
25 "service_client.h",
26 "test_util.cc",
27 "test_util.h",
28 "win/auth_code_getter.cc",
29 "win/auth_code_getter.h",
30 ]
12 31
13 configs += [ 32 configs += [
14 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 33 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
15 "//build/config/compiler:no_size_t_to_int_warning", 34 "//build/config/compiler:no_size_t_to_int_warning",
16 "//build/config/compiler:wexit_time_destructors", 35 "//build/config/compiler:wexit_time_destructors",
17 "//remoting:version", 36 "//remoting:version",
18 ] 37 ]
19 38
20 deps = [ 39 deps = [
21 "//base", 40 "//base",
22 "//google_apis", 41 "//google_apis",
23 "//remoting/host", 42 "//remoting/host",
24 "//remoting/host/native_messaging", 43 "//remoting/host/native_messaging",
25 ] 44 ]
26 45
27 if (is_win) { 46 if (is_win) {
28 deps += [ "//remoting/host:remoting_lib_idl" ] 47 deps += [ "//remoting/host:remoting_lib_idl" ]
29 } 48 }
30 } 49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698