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

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

Issue 2227593002: ServiceWorker: Implement StartWorker by using mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 4 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 source_set("feature_h264_with_openh264_ffmpeg") { 163 source_set("feature_h264_with_openh264_ffmpeg") {
164 deps = [ 164 deps = [
165 ":features", 165 ":features",
166 "//base", 166 "//base",
167 ] 167 ]
168 sources = [ 168 sources = [
169 "feature_h264_with_openh264_ffmpeg.cc", 169 "feature_h264_with_openh264_ffmpeg.cc",
170 "feature_h264_with_openh264_ffmpeg.h", 170 "feature_h264_with_openh264_ffmpeg.h",
171 ] 171 ]
172 } 172 }
173
174 mojom("mojo_bindings") {
175 # This interface is internal to content. However, this is not exported from
horo 2016/08/24 04:59:16 Do we need this comment after "However, ..."?
shimazu 2016/08/25 05:14:52 Oops, this comment is probably copied from somewhe
horo 2016/08/30 03:18:05 Not changed??
shimazu 2016/09/02 03:05:05 My mistake, sorry.. Done.
176 # the content component shared library. Code in content but outside of the
177 # content component (content/test or content/shell) should link to this
178 # directly.
179 visibility = [ "//content/*" ]
180
181 sources = [
182 "web_preferences.mojom",
183 ]
184
185 import_dirs = [ "//mojo/services" ]
186 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698