| 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 26 matching lines...) Expand all Loading... |
| 37 "//device/battery:mojo_bindings", | 37 "//device/battery:mojo_bindings", |
| 38 "//device/vibration:mojo_bindings", | 38 "//device/vibration:mojo_bindings", |
| 39 "//gin", | 39 "//gin", |
| 40 "//gpu", | 40 "//gpu", |
| 41 "//gpu/command_buffer/client:gles2_interface", | 41 "//gpu/command_buffer/client:gles2_interface", |
| 42 "//jingle:jingle_glue", | 42 "//jingle:jingle_glue", |
| 43 "//media", | 43 "//media", |
| 44 "//media/blink", | 44 "//media/blink", |
| 45 "//mojo/application/public/interfaces", | 45 "//mojo/application/public/interfaces", |
| 46 "//mojo/environment:chromium", | 46 "//mojo/environment:chromium", |
| 47 "//mojo/common:url_type_converters", |
| 48 "//mojo/converters/geometry", |
| 47 "//net", | 49 "//net", |
| 48 "//skia", | 50 "//skia", |
| 51 "//skia/public", |
| 49 "//storage/common", | 52 "//storage/common", |
| 50 "//third_party/icu", | 53 "//third_party/icu", |
| 51 "//third_party/libjingle", | 54 "//third_party/libjingle", |
| 52 "//third_party/mojo/src/mojo/edk/js", | 55 "//third_party/mojo/src/mojo/edk/js", |
| 56 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 53 "//third_party/mojo/src/mojo/public/js", | 57 "//third_party/mojo/src/mojo/public/js", |
| 54 "//third_party/npapi", | 58 "//third_party/npapi", |
| 55 "//third_party/WebKit/public:blink", | 59 "//third_party/WebKit/public:blink", |
| 56 "//third_party/widevine/cdm:version_h", | 60 "//third_party/widevine/cdm:version_h", |
| 57 "//ui/accessibility", | 61 "//ui/accessibility", |
| 58 "//ui/base", | 62 "//ui/base", |
| 59 "//ui/events:events_base", | 63 "//ui/events:events_base", |
| 60 "//ui/events:dom_keycode_converter", | 64 "//ui/events:dom_keycode_converter", |
| 61 "//ui/gl", | 65 "//ui/gl", |
| 62 "//ui/native_theme", | 66 "//ui/native_theme", |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 | 203 |
| 200 if (enable_webvr) { | 204 if (enable_webvr) { |
| 201 sources += [ | 205 sources += [ |
| 202 "vr/vr_dispatcher.cc", | 206 "vr/vr_dispatcher.cc", |
| 203 "vr/vr_dispatcher.h", | 207 "vr/vr_dispatcher.h", |
| 204 "vr/vr_type_converters.cc", | 208 "vr/vr_type_converters.cc", |
| 205 "vr/vr_type_converters.h", | 209 "vr/vr_type_converters.h", |
| 206 ] | 210 ] |
| 207 } | 211 } |
| 208 } | 212 } |
| OLD | NEW |