Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(464)

Side by Side Diff: content/browser/BUILD.gn

Issue 1424053002: Adds a flag to support "Virtual Time" to the blink scheduler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//content/browser/browser.gni") 8 import("//content/browser/browser.gni")
9 import("//media/media_options.gni") 9 import("//media/media_options.gni")
10 10
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 "$root_gen_dir/blink/grit/devtools_resources_map.h", 102 "$root_gen_dir/blink/grit/devtools_resources_map.h",
103 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h", 103 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h",
104 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc", 104 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc",
105 ], 105 ],
106 ".") 106 ".")
107 107
108 # Non-iOS deps. 108 # Non-iOS deps.
109 deps += [ 109 deps += [
110 "//cc", 110 "//cc",
111 "//cc/surfaces", 111 "//cc/surfaces",
112 "//components/scheduler:common",
112 "//content/app/resources", 113 "//content/app/resources",
113 "//content/app/strings", 114 "//content/app/strings",
114 "//content/browser/devtools:gen_devtools_protocol_handler", 115 "//content/browser/devtools:gen_devtools_protocol_handler",
115 "//content/browser/devtools:resources", 116 "//content/browser/devtools:resources",
116 "//content/common:mojo_bindings", 117 "//content/common:mojo_bindings",
117 "//content/public/common:mojo_bindings", 118 "//content/public/common:mojo_bindings",
118 "//device/bluetooth", 119 "//device/bluetooth",
119 "//gin", 120 "//gin",
120 "//mojo/application/public/interfaces", 121 "//mojo/application/public/interfaces",
121 "//mojo/common:url_type_converters", 122 "//mojo/common:url_type_converters",
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 513
513 if (enable_webvr && is_android) { 514 if (enable_webvr && is_android) {
514 sources += [ 515 sources += [
515 "vr/android/cardboard/cardboard_vr_device.cc", 516 "vr/android/cardboard/cardboard_vr_device.cc",
516 "vr/android/cardboard/cardboard_vr_device.h", 517 "vr/android/cardboard/cardboard_vr_device.h",
517 "vr/android/cardboard/cardboard_vr_device_provider.cc", 518 "vr/android/cardboard/cardboard_vr_device_provider.cc",
518 "vr/android/cardboard/cardboard_vr_device_provider.h", 519 "vr/android/cardboard/cardboard_vr_device_provider.h",
519 ] 520 ]
520 } 521 }
521 } 522 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698