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

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

Issue 2776493005: Convert SupervisedUserResourceThrottle to a NavigationThrottle. (Closed)
Patch Set: Fix Android Created 3 years, 9 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 2617 matching lines...) Expand 10 before | Expand all | Expand 10 after
2628 "../browser/ui/app_list/search/webstore/webstore_provider_browsertest.cc ", 2628 "../browser/ui/app_list/search/webstore/webstore_provider_browsertest.cc ",
2629 "../browser/ui/app_list/speech_recognizer_browsertest.cc", 2629 "../browser/ui/app_list/speech_recognizer_browsertest.cc",
2630 ] 2630 ]
2631 } 2631 }
2632 if (enable_service_discovery) { 2632 if (enable_service_discovery) {
2633 sources += [ "../browser/extensions/api/mdns/mdns_apitest.cc" ] 2633 sources += [ "../browser/extensions/api/mdns/mdns_apitest.cc" ]
2634 } 2634 }
2635 if (enable_supervised_users) { 2635 if (enable_supervised_users) {
2636 sources += [ 2636 sources += [
2637 "../browser/supervised_user/supervised_user_browsertest.cc", 2637 "../browser/supervised_user/supervised_user_browsertest.cc",
2638 "../browser/supervised_user/supervised_user_resource_throttle_browsertes t.cc", 2638 "../browser/supervised_user/supervised_user_navigation_throttle_browsert est.cc",
2639 "../browser/supervised_user/supervised_user_service_browsertest.cc", 2639 "../browser/supervised_user/supervised_user_service_browsertest.cc",
2640 ] 2640 ]
2641 } 2641 }
2642 if (enable_pepper_cdms) { 2642 if (enable_pepper_cdms) {
2643 # Runtime dependencies. 2643 # Runtime dependencies.
2644 data_deps += [ 2644 data_deps += [
2645 "//media/cdm/ppapi:clearkeycdmadapter", 2645 "//media/cdm/ppapi:clearkeycdmadapter",
2646 "//third_party/widevine/cdm:widevinecdmadapter", 2646 "//third_party/widevine/cdm:widevinecdmadapter",
2647 ] 2647 ]
2648 } 2648 }
(...skipping 2572 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