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

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

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

Powered by Google App Engine
This is Rietveld 408576698