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

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

Issue 2524553002: [Extensions] Create ChromeTestExtensionLoader (Closed)
Patch Set: compile Created 4 years 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/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 4229 matching lines...) Expand 10 before | Expand all | Expand 10 after
4240 "profile_resetter/profile_resetter_test_base.h", 4240 "profile_resetter/profile_resetter_test_base.h",
4241 "sessions/session_restore_test_helper.cc", 4241 "sessions/session_restore_test_helper.cc",
4242 "sessions/session_restore_test_helper.h", 4242 "sessions/session_restore_test_helper.h",
4243 "sessions/session_service_test_helper.cc", 4243 "sessions/session_service_test_helper.cc",
4244 "sessions/session_service_test_helper.h", 4244 "sessions/session_service_test_helper.h",
4245 ] 4245 ]
4246 } 4246 }
4247 4247
4248 if (enable_extensions) { 4248 if (enable_extensions) {
4249 sources += [ 4249 sources += [
4250 "extensions/chrome_extension_test_notification_observer.cc",
4251 "extensions/chrome_extension_test_notification_observer.h",
4252 "extensions/chrome_test_extension_loader.cc",
4253 "extensions/chrome_test_extension_loader.h",
4250 "extensions/extension_action_test_util.cc", 4254 "extensions/extension_action_test_util.cc",
4251 "extensions/extension_action_test_util.h", 4255 "extensions/extension_action_test_util.h",
4252 ] 4256 ]
4253 deps += [ "//extensions:test_support" ] 4257 deps += [ "//extensions:test_support" ]
4254 } 4258 }
4255 4259
4256 if (is_chromeos) { 4260 if (is_chromeos) {
4257 sources += [ 4261 sources += [
4258 "chromeos/app_mode/fake_cws.cc", 4262 "chromeos/app_mode/fake_cws.cc",
4259 "chromeos/app_mode/fake_cws.h", 4263 "chromeos/app_mode/fake_cws.h",
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
4424 # linking all of the test support. 4428 # linking all of the test support.
4425 static_library("pepper_cdm_test_constants") { 4429 static_library("pepper_cdm_test_constants") {
4426 testonly = true 4430 testonly = true
4427 visibility = [ "//chrome/*" ] 4431 visibility = [ "//chrome/*" ]
4428 sources = [ 4432 sources = [
4429 "media/pepper_cdm_test_constants.cc", 4433 "media/pepper_cdm_test_constants.cc",
4430 "media/pepper_cdm_test_constants.h", 4434 "media/pepper_cdm_test_constants.h",
4431 ] 4435 ]
4432 } 4436 }
4433 } 4437 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698