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 30 matching lines...) Expand all Loading... |
41 "//gin", | 41 "//gin", |
42 "//gpu", | 42 "//gpu", |
43 "//gpu/command_buffer/client:gles2_interface", | 43 "//gpu/command_buffer/client:gles2_interface", |
44 "//jingle:jingle_glue", | 44 "//jingle:jingle_glue", |
45 "//media", | 45 "//media", |
46 "//media/blink", | 46 "//media/blink", |
47 "//mojo/application/public/interfaces", | 47 "//mojo/application/public/interfaces", |
48 "//mojo/environment:chromium", | 48 "//mojo/environment:chromium", |
49 "//mojo/common:url_type_converters", | 49 "//mojo/common:url_type_converters", |
50 "//mojo/converters/geometry", | 50 "//mojo/converters/geometry", |
| 51 "//mojo/public/cpp/bindings", |
| 52 "//mojo/public/js", |
51 "//net", | 53 "//net", |
52 "//skia", | 54 "//skia", |
53 "//skia/public", | 55 "//skia/public", |
54 "//storage/common", | 56 "//storage/common", |
55 "//third_party/icu", | 57 "//third_party/icu", |
56 "//third_party/libjingle", | 58 "//third_party/libjingle", |
57 "//third_party/libyuv", | 59 "//third_party/libyuv", |
58 "//third_party/mojo/src/mojo/edk/js", | 60 "//third_party/mojo/src/mojo/edk/js", |
59 "//third_party/mojo/src/mojo/public/cpp/bindings", | |
60 "//third_party/mojo/src/mojo/public/js", | |
61 "//third_party/npapi", | 61 "//third_party/npapi", |
62 "//third_party/WebKit/public:blink", | 62 "//third_party/WebKit/public:blink", |
63 "//third_party/widevine/cdm:version_h", | 63 "//third_party/widevine/cdm:version_h", |
64 "//ui/accessibility", | 64 "//ui/accessibility", |
65 "//ui/base", | 65 "//ui/base", |
66 "//ui/events:events_base", | 66 "//ui/events:events_base", |
67 "//ui/events:dom_keycode_converter", | 67 "//ui/events:dom_keycode_converter", |
68 "//ui/gl", | 68 "//ui/gl", |
69 "//ui/native_theme", | 69 "//ui/native_theme", |
70 "//ui/surface", | 70 "//ui/surface", |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 | 220 |
221 if (enable_webvr) { | 221 if (enable_webvr) { |
222 sources += [ | 222 sources += [ |
223 "vr/vr_dispatcher.cc", | 223 "vr/vr_dispatcher.cc", |
224 "vr/vr_dispatcher.h", | 224 "vr/vr_dispatcher.h", |
225 "vr/vr_type_converters.cc", | 225 "vr/vr_type_converters.cc", |
226 "vr/vr_type_converters.h", | 226 "vr/vr_type_converters.h", |
227 ] | 227 ] |
228 } | 228 } |
229 } | 229 } |
OLD | NEW |