| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 "$root_gen_dir/blink/grit/devtools_resources_map.h", | 105 "$root_gen_dir/blink/grit/devtools_resources_map.h", |
| 106 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h", | 106 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h", |
| 107 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc", | 107 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc", |
| 108 ], | 108 ], |
| 109 ".") | 109 ".") |
| 110 | 110 |
| 111 # Non-iOS deps. | 111 # Non-iOS deps. |
| 112 deps += [ | 112 deps += [ |
| 113 "//cc", | 113 "//cc", |
| 114 "//cc/surfaces", | 114 "//cc/surfaces", |
| 115 "//components/filesystem:lib", |
| 115 "//components/leveldb:lib", | 116 "//components/leveldb:lib", |
| 116 "//components/profile_service:lib", | 117 "//components/profile_service:lib", |
| 117 "//components/scheduler:common", | 118 "//components/scheduler:common", |
| 118 "//content/app/resources", | 119 "//content/app/resources", |
| 119 "//content/app/strings", | 120 "//content/app/strings", |
| 120 "//content/browser/devtools:gen_devtools_protocol_handler", | 121 "//content/browser/devtools:gen_devtools_protocol_handler", |
| 121 "//content/browser/devtools:resources", | 122 "//content/browser/devtools:resources", |
| 122 "//content/common:mojo_bindings", | 123 "//content/common:mojo_bindings", |
| 123 "//content/public/common:mojo_bindings", | 124 "//content/public/common:mojo_bindings", |
| 124 "//device/bluetooth", | 125 "//device/bluetooth", |
| (...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 | 529 |
| 529 if (enable_webvr && is_android) { | 530 if (enable_webvr && is_android) { |
| 530 sources += [ | 531 sources += [ |
| 531 "vr/android/cardboard/cardboard_vr_device.cc", | 532 "vr/android/cardboard/cardboard_vr_device.cc", |
| 532 "vr/android/cardboard/cardboard_vr_device.h", | 533 "vr/android/cardboard/cardboard_vr_device.h", |
| 533 "vr/android/cardboard/cardboard_vr_device_provider.cc", | 534 "vr/android/cardboard/cardboard_vr_device_provider.cc", |
| 534 "vr/android/cardboard/cardboard_vr_device_provider.h", | 535 "vr/android/cardboard/cardboard_vr_device_provider.h", |
| 535 ] | 536 ] |
| 536 } | 537 } |
| 537 } | 538 } |
| OLD | NEW |