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

Side by Side Diff: remoting/base/BUILD.gn

Issue 2779373003: Moving service urls to base. (Closed)
Patch Set: Updating moved file c dates. Created 3 years, 8 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
« no previous file with comments | « no previous file | remoting/base/remoting_bot.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 source_set("base") { 5 source_set("base") {
6 sources = [ 6 sources = [
7 "auto_thread.cc", 7 "auto_thread.cc",
8 "auto_thread.h", 8 "auto_thread.h",
9 "auto_thread_task_runner.cc", 9 "auto_thread_task_runner.cc",
10 "auto_thread_task_runner.h", 10 "auto_thread_task_runner.h",
11 "buffered_socket_writer.cc", 11 "buffered_socket_writer.cc",
12 "buffered_socket_writer.h", 12 "buffered_socket_writer.h",
13 "capabilities.cc", 13 "capabilities.cc",
14 "capabilities.h", 14 "capabilities.h",
15 "chromium_url_request.cc", 15 "chromium_url_request.cc",
16 "chromium_url_request.h", 16 "chromium_url_request.h",
17 "chromoting_event.cc", 17 "chromoting_event.cc",
18 "chromoting_event.h", 18 "chromoting_event.h",
19 "compound_buffer.cc", 19 "compound_buffer.cc",
20 "compound_buffer.h", 20 "compound_buffer.h",
21 "constants.cc", 21 "constants.cc",
22 "constants.h", 22 "constants.h",
23 "leaky_bucket.cc", 23 "leaky_bucket.cc",
24 "leaky_bucket.h", 24 "leaky_bucket.h",
25 "rate_counter.cc", 25 "rate_counter.cc",
26 "rate_counter.h", 26 "rate_counter.h",
27 "remoting_bot.cc",
28 "remoting_bot.h",
27 "rsa_key_pair.cc", 29 "rsa_key_pair.cc",
28 "rsa_key_pair.h", 30 "rsa_key_pair.h",
29 "running_samples.cc", 31 "running_samples.cc",
30 "running_samples.h", 32 "running_samples.h",
31 "scoped_sc_handle_win.h", 33 "scoped_sc_handle_win.h",
34 "service_urls.cc",
35 "service_urls.h",
32 "socket_reader.cc", 36 "socket_reader.cc",
33 "socket_reader.h", 37 "socket_reader.h",
34 "telemetry_log_writer.cc", 38 "telemetry_log_writer.cc",
35 "telemetry_log_writer.h", 39 "telemetry_log_writer.h",
36 "typed_buffer.h", 40 "typed_buffer.h",
37 "url_request.h", 41 "url_request.h",
38 "url_request_context_getter.cc", 42 "url_request_context_getter.cc",
39 "url_request_context_getter.h", 43 "url_request_context_getter.h",
40 "util.cc", 44 "util.cc",
41 "util.h", 45 "util.h",
42 "vlog_net_log.cc", 46 "vlog_net_log.cc",
43 "vlog_net_log.h", 47 "vlog_net_log.h",
44 ] 48 ]
45 49
46 configs += [ 50 configs += [
47 "//build/config/compiler:wexit_time_destructors", 51 "//build/config/compiler:wexit_time_destructors",
48 "//remoting/build/config:version", 52 "//remoting/build/config:version",
49 ] 53 ]
50 54
51 public_deps = [ 55 public_deps = [
52 "//base", 56 "//base",
53 "//net", 57 "//net",
54 "//remoting/proto", 58 "//remoting/proto",
55 "//third_party/protobuf:protobuf_lite", 59 "//third_party/protobuf:protobuf_lite",
56 ] 60 ]
57 deps = [ 61 deps = [
58 "//base/third_party/dynamic_annotations", 62 "//base/third_party/dynamic_annotations",
63 "//google_apis",
59 "//third_party/libvpx", 64 "//third_party/libvpx",
60 "//third_party/libyuv", 65 "//third_party/libyuv",
61 "//third_party/webrtc/modules/desktop_capture:primitives", 66 "//third_party/webrtc/modules/desktop_capture:primitives",
62 "//url", 67 "//url",
63 ] 68 ]
64 if (is_nacl) { 69 if (is_nacl) {
65 sources -= [ 70 sources -= [
66 "chromium_url_request.cc", 71 "chromium_url_request.cc",
67 "chromoting_event.cc", 72 "chromoting_event.cc",
73 "service_urls.cc",
68 "telemetry_log_writer.cc", 74 "telemetry_log_writer.cc",
69 "url_request_context_getter.cc", 75 "url_request_context_getter.cc",
70 ] 76 ]
77 deps -= [ "//google_apis" ]
71 } 78 }
72 } 79 }
73 80
74 source_set("authorization") { 81 source_set("authorization") {
75 sources = [ 82 sources = [
76 "gaia_oauth_client.cc", 83 "gaia_oauth_client.cc",
77 "gaia_oauth_client.h", 84 "gaia_oauth_client.h",
78 "oauth_client.h", 85 "oauth_client.h",
79 "oauth_helper.cc", 86 "oauth_helper.cc",
80 "oauth_helper.h", 87 "oauth_helper.h",
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 ] 178 ]
172 179
173 if (is_win || is_mac || is_chromeos) { 180 if (is_win || is_mac || is_chromeos) {
174 deps += [ "//breakpad:client" ] 181 deps += [ "//breakpad:client" ]
175 } 182 }
176 183
177 if (is_win) { 184 if (is_win) {
178 libs = [ "rpcrt4.lib" ] # For UuidCreate in breakpad_win_unittest.cc. 185 libs = [ "rpcrt4.lib" ] # For UuidCreate in breakpad_win_unittest.cc.
179 } 186 }
180 } 187 }
OLDNEW
« no previous file with comments | « no previous file | remoting/base/remoting_bot.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698