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

Side by Side Diff: chrome/test/BUILD.gn

Issue 2776493005: Convert SupervisedUserResourceThrottle to a NavigationThrottle. (Closed)
Patch Set: Response to comments Created 3 years, 8 months 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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/crypto.gni") 7 import("//build/config/crypto.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 2616 matching lines...) Expand 10 before | Expand all | Expand 10 after
2627 "../browser/ui/app_list/search/webstore/webstore_provider_browsertest.cc ", 2627 "../browser/ui/app_list/search/webstore/webstore_provider_browsertest.cc ",
2628 "../browser/ui/app_list/speech_recognizer_browsertest.cc", 2628 "../browser/ui/app_list/speech_recognizer_browsertest.cc",
2629 ] 2629 ]
2630 } 2630 }
2631 if (enable_service_discovery) { 2631 if (enable_service_discovery) {
2632 sources += [ "../browser/extensions/api/mdns/mdns_apitest.cc" ] 2632 sources += [ "../browser/extensions/api/mdns/mdns_apitest.cc" ]
2633 } 2633 }
2634 if (enable_supervised_users) { 2634 if (enable_supervised_users) {
2635 sources += [ 2635 sources += [
2636 "../browser/supervised_user/supervised_user_browsertest.cc", 2636 "../browser/supervised_user/supervised_user_browsertest.cc",
2637 "../browser/supervised_user/supervised_user_resource_throttle_browsertes t.cc", 2637 "../browser/supervised_user/supervised_user_navigation_throttle_browsert est.cc",
2638 "../browser/supervised_user/supervised_user_service_browsertest.cc", 2638 "../browser/supervised_user/supervised_user_service_browsertest.cc",
2639 ] 2639 ]
2640 } 2640 }
2641 if (enable_pepper_cdms) { 2641 if (enable_pepper_cdms) {
2642 # Runtime dependencies. 2642 # Runtime dependencies.
2643 data_deps += [ 2643 data_deps += [
2644 "//media/cdm/ppapi:clearkeycdmadapter", 2644 "//media/cdm/ppapi:clearkeycdmadapter",
2645 "//third_party/widevine/cdm:widevinecdmadapter", 2645 "//third_party/widevine/cdm:widevinecdmadapter",
2646 ] 2646 ]
2647 } 2647 }
(...skipping 2573 matching lines...) Expand 10 before | Expand all | Expand 10 after
5221 } 5221 }
5222 5222
5223 if (is_win) { 5223 if (is_win) {
5224 loadable_module("conflicts_dll") { 5224 loadable_module("conflicts_dll") {
5225 testonly = true 5225 testonly = true
5226 sources = [ 5226 sources = [
5227 "conflicts/conflicts_dll.cc", 5227 "conflicts/conflicts_dll.cc",
5228 ] 5228 ]
5229 } 5229 }
5230 } 5230 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698