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

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

Issue 1771743002: Move geolocation and permission mojoms into WebKit/public/platform. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//content/common/common.gni") 8 import("//content/common/common.gni")
9 import("//mojo/public/tools/bindings/mojom.gni") 9 import("//mojo/public/tools/bindings/mojom.gni")
10 import("//third_party/webrtc/build/webrtc.gni") 10 import("//third_party/webrtc/build/webrtc.gni")
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 sources += [ 130 sources += [
131 "webrtc_ip_handling_policy.cc", 131 "webrtc_ip_handling_policy.cc",
132 "webrtc_ip_handling_policy.h", 132 "webrtc_ip_handling_policy.h",
133 ] 133 ]
134 } 134 }
135 } 135 }
136 136
137 mojom("mojo_bindings") { 137 mojom("mojo_bindings") {
138 sources = [ 138 sources = [
139 "background_sync.mojom", 139 "background_sync.mojom",
140 "mojo_geoposition.mojom",
141 "permission_status.mojom",
142 "service_worker_event_status.mojom", 140 "service_worker_event_status.mojom",
143 ] 141 ]
144 } 142 }
145 143
146 buildflag_header("features") { 144 buildflag_header("features") {
147 header = "features.h" 145 header = "features.h"
148 146
149 flags = [ "RTC_USE_H264=$rtc_use_h264" ] 147 flags = [ "RTC_USE_H264=$rtc_use_h264" ]
150 } 148 }
151 149
152 source_set("feature_h264_with_openh264_ffmpeg") { 150 source_set("feature_h264_with_openh264_ffmpeg") {
153 deps = [ 151 deps = [
154 ":features", 152 ":features",
155 "//base", 153 "//base",
156 ] 154 ]
157 sources = [ 155 sources = [
158 "feature_h264_with_openh264_ffmpeg.cc", 156 "feature_h264_with_openh264_ffmpeg.cc",
159 "feature_h264_with_openh264_ffmpeg.h", 157 "feature_h264_with_openh264_ffmpeg.h",
160 ] 158 ]
161 } 159 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698