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

Side by Side Diff: content/renderer/BUILD.gn

Issue 583663003: Vibration API : migrate to device/vibration using mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix gn builds Created 6 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
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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//content/renderer/renderer.gni") 7 import("//content/renderer/renderer.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 9
10 source_set("renderer") { 10 source_set("renderer") {
(...skipping 13 matching lines...) Expand all
24 # those don't cross component boundaries. 24 # those don't cross component boundaries.
25 "//crypto:platform", 25 "//crypto:platform",
26 26
27 "//base/allocator", 27 "//base/allocator",
28 "//cc", 28 "//cc",
29 "//cc/blink", 29 "//cc/blink",
30 "//content:resources", 30 "//content:resources",
31 "//content/common:mojo_bindings", 31 "//content/common:mojo_bindings",
32 "//content/public/child:child_sources", 32 "//content/public/child:child_sources",
33 "//content/public/common:common_sources", 33 "//content/public/common:common_sources",
34 "//device/vibration:mojo_bindings",
34 "//gin", 35 "//gin",
35 "//gpu", 36 "//gpu",
36 "//gpu/command_buffer/client:gles2_interface", 37 "//gpu/command_buffer/client:gles2_interface",
37 "//jingle:jingle_glue", 38 "//jingle:jingle_glue",
38 "//media", 39 "//media",
39 "//media/blink", 40 "//media/blink",
40 "//mojo/bindings/js", 41 "//mojo/bindings/js",
41 "//mojo/environment:chromium", 42 "//mojo/environment:chromium",
42 "//mojo/public/js/bindings", 43 "//mojo/public/js/bindings",
43 "//mojo/public/interfaces/application", 44 "//mojo/public/interfaces/application",
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 191
191 if (enable_browser_cdms) { 192 if (enable_browser_cdms) {
192 sources += [ 193 sources += [
193 "media/crypto/proxy_media_keys.cc", 194 "media/crypto/proxy_media_keys.cc",
194 "media/crypto/proxy_media_keys.h", 195 "media/crypto/proxy_media_keys.h",
195 "media/crypto/renderer_cdm_manager.cc", 196 "media/crypto/renderer_cdm_manager.cc",
196 "media/crypto/renderer_cdm_manager.h", 197 "media/crypto/renderer_cdm_manager.h",
197 ] 198 ]
198 } 199 }
199 } 200 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698