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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 sources += [ | 110 sources += [ |
111 "mojo/mojo_shell_client_host.cc", | 111 "mojo/mojo_shell_client_host.cc", |
112 "mojo/mojo_shell_client_host.h", | 112 "mojo/mojo_shell_client_host.h", |
113 "mojo/renderer_capability_filter.cc", | 113 "mojo/renderer_capability_filter.cc", |
114 ] | 114 ] |
115 | 115 |
116 # Non-iOS deps. | 116 # Non-iOS deps. |
117 deps += [ | 117 deps += [ |
118 "//cc", | 118 "//cc", |
119 "//cc/surfaces", | 119 "//cc/surfaces", |
| 120 "//components/filesystem:lib", |
120 "//components/leveldb:lib", | 121 "//components/leveldb:lib", |
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", |
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
535 | 536 |
536 if (enable_webvr && is_android) { | 537 if (enable_webvr && is_android) { |
537 sources += [ | 538 sources += [ |
538 "vr/android/cardboard/cardboard_vr_device.cc", | 539 "vr/android/cardboard/cardboard_vr_device.cc", |
539 "vr/android/cardboard/cardboard_vr_device.h", | 540 "vr/android/cardboard/cardboard_vr_device.h", |
540 "vr/android/cardboard/cardboard_vr_device_provider.cc", | 541 "vr/android/cardboard/cardboard_vr_device_provider.cc", |
541 "vr/android/cardboard/cardboard_vr_device_provider.h", | 542 "vr/android/cardboard/cardboard_vr_device_provider.h", |
542 ] | 543 ] |
543 } | 544 } |
544 } | 545 } |
OLD | NEW |