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

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

Issue 1833733002: Add explicit dependency on //url in remoting/base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/remoting.gyp » ('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 import("//remoting/remoting_srcs.gni") 5 import("//remoting/remoting_srcs.gni")
6 6
7 source_set("base") { 7 source_set("base") {
8 sources = rebase_path(remoting_srcs_gypi_values.remoting_base_sources, 8 sources = rebase_path(remoting_srcs_gypi_values.remoting_base_sources,
9 ".", 9 ".",
10 "//remoting") 10 "//remoting")
11 11
12 configs += [ "//build/config/compiler:wexit_time_destructors" ] 12 configs += [ "//build/config/compiler:wexit_time_destructors" ]
13 13
14 public_deps = [ 14 public_deps = [
15 "//base", 15 "//base",
16 "//net", 16 "//net",
17 "//remoting/proto", 17 "//remoting/proto",
18 "//third_party/protobuf:protobuf_lite", 18 "//third_party/protobuf:protobuf_lite",
19 ] 19 ]
20 deps = [ 20 deps = [
21 "//base/third_party/dynamic_annotations", 21 "//base/third_party/dynamic_annotations",
22 "//third_party/libvpx", 22 "//third_party/libvpx",
23 "//third_party/libyuv", 23 "//third_party/libyuv",
24 "//third_party/webrtc/modules/desktop_capture:primitives", 24 "//third_party/webrtc/modules/desktop_capture:primitives",
25 "//url",
25 ] 26 ]
26 if (is_nacl) { 27 if (is_nacl) {
27 sources -= [ 28 sources -= [
28 "chromium_url_request.cc", 29 "chromium_url_request.cc",
29 "url_request_context_getter.cc", 30 "url_request_context_getter.cc",
30 ] 31 ]
31 } 32 }
32 } 33 }
33 34
34 source_set("breakpad") { 35 source_set("breakpad") {
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 ] 84 ]
84 85
85 if (is_win || is_mac || is_chromeos) { 86 if (is_win || is_mac || is_chromeos) {
86 deps += [ "//breakpad:client" ] 87 deps += [ "//breakpad:client" ]
87 } 88 }
88 89
89 if (is_win) { 90 if (is_win) {
90 libs = [ "rpcrt4.lib" ] # For UuidCreate in breakpad_win_unittest.cc. 91 libs = [ "rpcrt4.lib" ] # For UuidCreate in breakpad_win_unittest.cc.
91 } 92 }
92 } 93 }
OLDNEW
« no previous file with comments | « no previous file | remoting/remoting.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698