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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 "//third_party/icu", | 60 "//third_party/icu", |
61 "//third_party/libjingle", | 61 "//third_party/libjingle", |
62 "//third_party/libyuv", | 62 "//third_party/libyuv", |
63 "//third_party/mojo/src/mojo/edk/js", | 63 "//third_party/mojo/src/mojo/edk/js", |
64 "//third_party/npapi", | 64 "//third_party/npapi", |
65 "//third_party/widevine/cdm:version_h", | 65 "//third_party/widevine/cdm:version_h", |
66 "//ui/accessibility", | 66 "//ui/accessibility", |
67 "//ui/base", | 67 "//ui/base", |
68 "//ui/events:dom_keycode_converter", | 68 "//ui/events:dom_keycode_converter", |
69 "//ui/events:events_base", | 69 "//ui/events:events_base", |
| 70 "//ui/events/blink", |
70 "//ui/gl", | 71 "//ui/gl", |
71 "//ui/native_theme", | 72 "//ui/native_theme", |
72 "//ui/surface", | 73 "//ui/surface", |
73 "//v8", | 74 "//v8", |
74 ] | 75 ] |
75 | 76 |
76 if (is_mac) { | 77 if (is_mac) { |
77 sources -= [ | 78 sources -= [ |
78 "webscrollbarbehavior_impl_gtkoraura.cc", | 79 "webscrollbarbehavior_impl_gtkoraura.cc", |
79 "webscrollbarbehavior_impl_gtkoraura.h", | 80 "webscrollbarbehavior_impl_gtkoraura.h", |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 | 224 |
224 if (enable_webvr) { | 225 if (enable_webvr) { |
225 sources += [ | 226 sources += [ |
226 "vr/vr_dispatcher.cc", | 227 "vr/vr_dispatcher.cc", |
227 "vr/vr_dispatcher.h", | 228 "vr/vr_dispatcher.h", |
228 "vr/vr_type_converters.cc", | 229 "vr/vr_type_converters.cc", |
229 "vr/vr_type_converters.h", | 230 "vr/vr_type_converters.h", |
230 ] | 231 ] |
231 } | 232 } |
232 } | 233 } |
OLD | NEW |