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

Side by Side Diff: content/public/common/BUILD.gn

Issue 1722773002: Mustash: Move GURL ParamTraits to url/ipc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
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("//build/config/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//content/common/common.gni") 7 import("//content/common/common.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 9
10 # See //content/BUILD.gn for how this works. 10 # See //content/BUILD.gn for how this works.
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 "//content/common", 87 "//content/common",
88 "//mojo/public/cpp/bindings", 88 "//mojo/public/cpp/bindings",
89 ] 89 ]
90 deps = [ 90 deps = [
91 "//net", 91 "//net",
92 "//skia", 92 "//skia",
93 "//third_party/WebKit/public:blink_headers", 93 "//third_party/WebKit/public:blink_headers",
94 "//third_party/icu", 94 "//third_party/icu",
95 "//ui/base", 95 "//ui/base",
96 "//ui/gfx", 96 "//ui/gfx",
97 "//url/ipc:url_ipc",
97 ] 98 ]
98 99
99 if (!enable_plugins) { 100 if (!enable_plugins) {
100 sources -= [ 101 sources -= [
101 "pepper_plugin_info.cc", 102 "pepper_plugin_info.cc",
102 "pepper_plugin_info.h", 103 "pepper_plugin_info.h",
103 ] 104 ]
104 } 105 }
105 106
106 if (enable_webrtc) { 107 if (enable_webrtc) {
107 sources += [ 108 sources += [
108 "webrtc_ip_handling_policy.cc", 109 "webrtc_ip_handling_policy.cc",
109 "webrtc_ip_handling_policy.h", 110 "webrtc_ip_handling_policy.h",
110 ] 111 ]
111 } 112 }
112 } 113 }
113 114
114 mojom("mojo_bindings") { 115 mojom("mojo_bindings") {
115 sources = [ 116 sources = [
116 "background_sync.mojom", 117 "background_sync.mojom",
117 "mojo_geoposition.mojom", 118 "mojo_geoposition.mojom",
118 "permission_status.mojom", 119 "permission_status.mojom",
119 "service_worker_event_status.mojom", 120 "service_worker_event_status.mojom",
120 ] 121 ]
121 } 122 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698