OLD | NEW |
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 18 matching lines...) Expand all Loading... |
29 "//cc", | 29 "//cc", |
30 "//cc/blink", | 30 "//cc/blink", |
31 "//components/url_formatter", | 31 "//components/url_formatter", |
32 "//components/scheduler:scheduler", | 32 "//components/scheduler:scheduler", |
33 "//content:resources", | 33 "//content:resources", |
34 "//content/common:mojo_bindings", | 34 "//content/common:mojo_bindings", |
35 "//content/public/child:child_sources", | 35 "//content/public/child:child_sources", |
36 "//content/public/common:common_sources", | 36 "//content/public/common:common_sources", |
37 "//content/public/common:mojo_bindings", | 37 "//content/public/common:mojo_bindings", |
38 "//device/battery:mojo_bindings", | 38 "//device/battery:mojo_bindings", |
| 39 "//device/devices_app/public/cpp", |
| 40 "//device/devices_app/usb/public/interfaces", |
39 "//device/vibration:mojo_bindings", | 41 "//device/vibration:mojo_bindings", |
40 "//gin", | 42 "//gin", |
41 "//gpu", | 43 "//gpu", |
42 "//gpu/command_buffer/client:gles2_interface", | 44 "//gpu/command_buffer/client:gles2_interface", |
43 "//jingle:jingle_glue", | 45 "//jingle:jingle_glue", |
44 "//media", | 46 "//media", |
45 "//media/blink", | 47 "//media/blink", |
46 "//mojo/application/public/interfaces", | 48 "//mojo/application/public/interfaces", |
47 "//mojo/environment:chromium", | 49 "//mojo/environment:chromium", |
48 "//mojo/common:url_type_converters", | 50 "//mojo/common:url_type_converters", |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 | 206 |
205 if (enable_webvr) { | 207 if (enable_webvr) { |
206 sources += [ | 208 sources += [ |
207 "vr/vr_dispatcher.cc", | 209 "vr/vr_dispatcher.cc", |
208 "vr/vr_dispatcher.h", | 210 "vr/vr_dispatcher.h", |
209 "vr/vr_type_converters.cc", | 211 "vr/vr_type_converters.cc", |
210 "vr/vr_type_converters.h", | 212 "vr/vr_type_converters.h", |
211 ] | 213 ] |
212 } | 214 } |
213 } | 215 } |
OLD | NEW |