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

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

Issue 2420103003: [Remoting Android] Log app version for telemetry (Closed)
Patch Set: Created 4 years, 2 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/chromoting_event.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",
(...skipping 25 matching lines...) Expand all
36 "typed_buffer.h", 36 "typed_buffer.h",
37 "url_request.h", 37 "url_request.h",
38 "url_request_context_getter.cc", 38 "url_request_context_getter.cc",
39 "url_request_context_getter.h", 39 "url_request_context_getter.h",
40 "util.cc", 40 "util.cc",
41 "util.h", 41 "util.h",
42 "vlog_net_log.cc", 42 "vlog_net_log.cc",
43 "vlog_net_log.h", 43 "vlog_net_log.h",
44 ] 44 ]
45 45
46 configs += [ "//build/config/compiler:wexit_time_destructors" ] 46 configs += [
47 "//build/config/compiler:wexit_time_destructors",
48 "//remoting/build/config:version",
49 ]
47 50
48 public_deps = [ 51 public_deps = [
49 "//base", 52 "//base",
50 "//net", 53 "//net",
51 "//remoting/proto", 54 "//remoting/proto",
52 "//third_party/protobuf:protobuf_lite", 55 "//third_party/protobuf:protobuf_lite",
53 ] 56 ]
54 deps = [ 57 deps = [
55 "//base/third_party/dynamic_annotations", 58 "//base/third_party/dynamic_annotations",
56 "//third_party/libvpx", 59 "//third_party/libvpx",
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 ] 124 ]
122 125
123 if (is_win || is_mac || is_chromeos) { 126 if (is_win || is_mac || is_chromeos) {
124 deps += [ "//breakpad:client" ] 127 deps += [ "//breakpad:client" ]
125 } 128 }
126 129
127 if (is_win) { 130 if (is_win) {
128 libs = [ "rpcrt4.lib" ] # For UuidCreate in breakpad_win_unittest.cc. 131 libs = [ "rpcrt4.lib" ] # For UuidCreate in breakpad_win_unittest.cc.
129 } 132 }
130 } 133 }
OLDNEW
« no previous file with comments | « no previous file | remoting/base/chromoting_event.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698