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/browser/browser.gni") | 7 import("//content/browser/browser.gni") |
8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
9 | 9 |
10 source_set("browser") { | 10 source_set("browser") { |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 sources += [ | 111 sources += [ |
112 "mojo/mojo_shell_client_host.cc", | 112 "mojo/mojo_shell_client_host.cc", |
113 "mojo/mojo_shell_client_host.h", | 113 "mojo/mojo_shell_client_host.h", |
114 "mojo/renderer_capability_filter.cc", | 114 "mojo/renderer_capability_filter.cc", |
115 ] | 115 ] |
116 | 116 |
117 # Non-iOS deps. | 117 # Non-iOS deps. |
118 deps += [ | 118 deps += [ |
119 "//cc", | 119 "//cc", |
120 "//cc/surfaces", | 120 "//cc/surfaces", |
| 121 "//components/device_event_log", |
121 "//components/scheduler:common", | 122 "//components/scheduler:common", |
122 "//content/app/resources", | 123 "//content/app/resources", |
123 "//content/app/strings", | 124 "//content/app/strings", |
124 "//content/browser/devtools:gen_devtools_protocol_handler", | 125 "//content/browser/devtools:gen_devtools_protocol_handler", |
125 "//content/browser/devtools:resources", | 126 "//content/browser/devtools:resources", |
126 "//content/common:mojo_bindings", | 127 "//content/common:mojo_bindings", |
127 "//content/public/common:mojo_bindings", | 128 "//content/public/common:mojo_bindings", |
128 "//device/bluetooth", | 129 "//device/bluetooth", |
129 "//gin", | 130 "//gin", |
130 "//mojo/common:url_type_converters", | 131 "//mojo/common:url_type_converters", |
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
552 | 553 |
553 if (enable_webvr && is_android) { | 554 if (enable_webvr && is_android) { |
554 sources += [ | 555 sources += [ |
555 "vr/android/cardboard/cardboard_vr_device.cc", | 556 "vr/android/cardboard/cardboard_vr_device.cc", |
556 "vr/android/cardboard/cardboard_vr_device.h", | 557 "vr/android/cardboard/cardboard_vr_device.h", |
557 "vr/android/cardboard/cardboard_vr_device_provider.cc", | 558 "vr/android/cardboard/cardboard_vr_device_provider.cc", |
558 "vr/android/cardboard/cardboard_vr_device_provider.h", | 559 "vr/android/cardboard/cardboard_vr_device_provider.h", |
559 ] | 560 ] |
560 } | 561 } |
561 } | 562 } |
OLD | NEW |