OLD | NEW |
---|---|
(Empty) | |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 source_set("setup") { | |
kelvinp
2015/02/27 21:00:57
Can we define the source files in a gypi file like
| |
6 sources = [ | |
7 "daemon_controller.cc", | |
8 "daemon_controller.h", | |
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 "me2me_native_messaging_host.cc", | |
16 "me2me_native_messaging_host.h", | |
17 "oauth_client.cc", | |
18 "oauth_client.h", | |
19 "oauth_helper.cc", | |
20 "oauth_helper.h", | |
21 "pin_validator.cc", | |
22 "pin_validator.h", | |
23 "service_client.cc", | |
24 "service_client.h", | |
25 "test_util.cc", | |
26 "test_util.h", | |
27 "win/auth_code_getter.cc", | |
28 "win/auth_code_getter.h", | |
29 ] | |
30 | |
31 configs += [ | |
32 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | |
33 "//build/config/compiler:no_size_t_to_int_warning", | |
34 "//build/config/compiler:wexit_time_destructors", | |
35 "//remoting:version", | |
36 ] | |
37 | |
38 deps = [ | |
39 "//base", | |
40 "//google_apis", | |
41 "//remoting/host", | |
42 ] | |
43 | |
44 if (is_win) { | |
45 deps += [ | |
46 #remoting_lib_idl", TODO(GYP) Windows target for remoting. | |
47 "//google_update", | |
48 ] | |
49 } | |
50 } | |
OLD | NEW |