| 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 11 matching lines...) Expand all Loading... |
| 22 ] | 22 ] |
| 23 | 23 |
| 24 deps = [ | 24 deps = [ |
| 25 # TODO(GYP) bug 376846 remove this. This should be inherited from //net but | 25 # TODO(GYP) bug 376846 remove this. This should be inherited from //net but |
| 26 # those don't cross component boundaries. | 26 # those don't cross component boundaries. |
| 27 "//crypto:platform", | 27 "//crypto:platform", |
| 28 "//base/allocator", | 28 "//base/allocator", |
| 29 "//cc", | 29 "//cc", |
| 30 "//cc/blink", | 30 "//cc/blink", |
| 31 "//components/scheduler:scheduler", | 31 "//components/scheduler:scheduler", |
| 32 "//components/startup_metric_utils/common", |
| 32 "//components/url_formatter", | 33 "//components/url_formatter", |
| 33 "//components/webusb", | 34 "//components/webusb", |
| 34 "//content:resources", | 35 "//content:resources", |
| 35 "//content/common:mojo_bindings", | 36 "//content/common:mojo_bindings", |
| 36 "//content/public/child:child_sources", | 37 "//content/public/child:child_sources", |
| 37 "//content/public/common:common_sources", | 38 "//content/public/common:common_sources", |
| 38 "//content/public/common:mojo_bindings", | 39 "//content/public/common:mojo_bindings", |
| 39 "//device/battery:mojo_bindings", | 40 "//device/battery:mojo_bindings", |
| 40 "//device/vibration:mojo_bindings", | 41 "//device/vibration:mojo_bindings", |
| 41 "//gin", | 42 "//gin", |
| (...skipping 178 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 |