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

Side by Side Diff: remoting/base/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
« no previous file with comments | « no previous file | remoting/client/BUILD.gn » ('j') | remoting/remoting_options.gni » ('J')
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 import("//remoting/remoting_srcs.gni")
6
7 source_set("base") { 5 source_set("base") {
8 sources = rebase_path(remoting_srcs_gypi_values.remoting_base_sources, 6 sources = [
9 ".", 7 "auto_thread.cc",
10 "//remoting") 8 "auto_thread.h",
9 "auto_thread_task_runner.cc",
10 "auto_thread_task_runner.h",
11 "buffered_socket_writer.cc",
12 "buffered_socket_writer.h",
13 "capabilities.cc",
14 "capabilities.h",
15 "chromium_url_request.cc",
16 "chromium_url_request.h",
17 "chromoting_event.cc",
18 "chromoting_event.h",
19 "compound_buffer.cc",
20 "compound_buffer.h",
21 "constants.cc",
22 "constants.h",
23 "rate_counter.cc",
24 "rate_counter.h",
25 "rsa_key_pair.cc",
26 "rsa_key_pair.h",
27 "running_samples.cc",
28 "running_samples.h",
29 "scoped_sc_handle_win.h",
30 "socket_reader.cc",
31 "socket_reader.h",
32 "telemetry_log_writer.cc",
33 "telemetry_log_writer.h",
34 "typed_buffer.h",
35 "url_request.h",
36 "url_request_context_getter.cc",
37 "url_request_context_getter.h",
38 "util.cc",
39 "util.h",
40 "vlog_net_log.cc",
41 "vlog_net_log.h",
42 ]
11 43
12 configs += [ "//build/config/compiler:wexit_time_destructors" ] 44 configs += [ "//build/config/compiler:wexit_time_destructors" ]
13 45
14 public_deps = [ 46 public_deps = [
15 "//base", 47 "//base",
16 "//net", 48 "//net",
17 "//remoting/proto", 49 "//remoting/proto",
18 "//third_party/protobuf:protobuf_lite", 50 "//third_party/protobuf:protobuf_lite",
19 ] 51 ]
20 deps = [ 52 deps = [
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 ] 119 ]
88 120
89 if (is_win || is_mac || is_chromeos) { 121 if (is_win || is_mac || is_chromeos) {
90 deps += [ "//breakpad:client" ] 122 deps += [ "//breakpad:client" ]
91 } 123 }
92 124
93 if (is_win) { 125 if (is_win) {
94 libs = [ "rpcrt4.lib" ] # For UuidCreate in breakpad_win_unittest.cc. 126 libs = [ "rpcrt4.lib" ] # For UuidCreate in breakpad_win_unittest.cc.
95 } 127 }
96 } 128 }
OLDNEW
« no previous file with comments | « no previous file | remoting/client/BUILD.gn » ('j') | remoting/remoting_options.gni » ('J')

Powered by Google App Engine
This is Rietveld 408576698