| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 "//third_party/mojo/src/mojo/edk/js", | 58 "//third_party/mojo/src/mojo/edk/js", |
| 59 "//third_party/mojo/src/mojo/public/cpp/bindings", | 59 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 60 "//third_party/mojo/src/mojo/public/js", | 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/events/blink", |
| 68 "//ui/gl", | 69 "//ui/gl", |
| 69 "//ui/native_theme", | 70 "//ui/native_theme", |
| 70 "//ui/surface", | 71 "//ui/surface", |
| 71 "//v8", | 72 "//v8", |
| 72 ] | 73 ] |
| 73 | 74 |
| 74 if (is_mac) { | 75 if (is_mac) { |
| 75 sources -= [ | 76 sources -= [ |
| 76 "webscrollbarbehavior_impl_gtkoraura.cc", | 77 "webscrollbarbehavior_impl_gtkoraura.cc", |
| 77 "webscrollbarbehavior_impl_gtkoraura.h", | 78 "webscrollbarbehavior_impl_gtkoraura.h", |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 | 221 |
| 221 if (enable_webvr) { | 222 if (enable_webvr) { |
| 222 sources += [ | 223 sources += [ |
| 223 "vr/vr_dispatcher.cc", | 224 "vr/vr_dispatcher.cc", |
| 224 "vr/vr_dispatcher.h", | 225 "vr/vr_dispatcher.h", |
| 225 "vr/vr_type_converters.cc", | 226 "vr/vr_type_converters.cc", |
| 226 "vr/vr_type_converters.h", | 227 "vr/vr_type_converters.h", |
| 227 ] | 228 ] |
| 228 } | 229 } |
| 229 } | 230 } |
| OLD | NEW |