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

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

Issue 2497983002: PaymentApp: Implement PaymentAppManager.setManifest(). (Closed)
Patch Set: rebase 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/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("//mojo/public/tools/bindings/mojom.gni") 10 import("//mojo/public/tools/bindings/mojom.gni")
(...skipping 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after
1127 "../browser/memory/memory_monitor_win_unittest.cc", 1127 "../browser/memory/memory_monitor_win_unittest.cc",
1128 "../browser/memory/test_memory_monitor.cc", 1128 "../browser/memory/test_memory_monitor.cc",
1129 "../browser/memory/test_memory_monitor.h", 1129 "../browser/memory/test_memory_monitor.h",
1130 "../browser/net/quota_policy_cookie_store_unittest.cc", 1130 "../browser/net/quota_policy_cookie_store_unittest.cc",
1131 "../browser/notification_service_impl_unittest.cc", 1131 "../browser/notification_service_impl_unittest.cc",
1132 "../browser/notifications/notification_database_data_unittest.cc", 1132 "../browser/notifications/notification_database_data_unittest.cc",
1133 "../browser/notifications/notification_database_unittest.cc", 1133 "../browser/notifications/notification_database_unittest.cc",
1134 "../browser/notifications/notification_id_generator_unittest.cc", 1134 "../browser/notifications/notification_id_generator_unittest.cc",
1135 "../browser/notifications/platform_notification_context_unittest.cc", 1135 "../browser/notifications/platform_notification_context_unittest.cc",
1136 "../browser/notifications/type_converters_unittest.cc", 1136 "../browser/notifications/type_converters_unittest.cc",
1137 "../browser/payments/payment_app_manager_unittest.cc",
1137 "../browser/presentation/presentation_service_impl_unittest.cc", 1138 "../browser/presentation/presentation_service_impl_unittest.cc",
1138 "../browser/presentation/presentation_type_converters_unittest.cc", 1139 "../browser/presentation/presentation_type_converters_unittest.cc",
1139 "../browser/quota/mock_quota_manager.cc", 1140 "../browser/quota/mock_quota_manager.cc",
1140 "../browser/quota/mock_quota_manager.h", 1141 "../browser/quota/mock_quota_manager.h",
1141 "../browser/quota/mock_quota_manager_proxy.cc", 1142 "../browser/quota/mock_quota_manager_proxy.cc",
1142 "../browser/quota/mock_quota_manager_proxy.h", 1143 "../browser/quota/mock_quota_manager_proxy.h",
1143 "../browser/quota/mock_quota_manager_unittest.cc", 1144 "../browser/quota/mock_quota_manager_unittest.cc",
1144 "../browser/quota/quota_backend_impl_unittest.cc", 1145 "../browser/quota/quota_backend_impl_unittest.cc",
1145 "../browser/quota/quota_database_unittest.cc", 1146 "../browser/quota/quota_database_unittest.cc",
1146 "../browser/quota/quota_manager_unittest.cc", 1147 "../browser/quota/quota_manager_unittest.cc",
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
1360 deps = [ 1361 deps = [
1361 ":content_test_mojo_bindings", 1362 ":content_test_mojo_bindings",
1362 ":test_support", 1363 ":test_support",
1363 "//base/test:test_support", 1364 "//base/test:test_support",
1364 "//base/third_party/dynamic_annotations", 1365 "//base/third_party/dynamic_annotations",
1365 "//cc", 1366 "//cc",
1366 "//cc:test_support", 1367 "//cc:test_support",
1367 "//cc/ipc", 1368 "//cc/ipc",
1368 "//cc/surfaces", 1369 "//cc/surfaces",
1369 "//components/display_compositor", 1370 "//components/display_compositor",
1371 "//components/payments:payment_app",
1370 "//content:resources", 1372 "//content:resources",
1371 "//content/app:both_for_content_tests", 1373 "//content/app:both_for_content_tests",
1372 "//content/browser:for_content_tests", 1374 "//content/browser:for_content_tests",
1373 "//content/browser/cache_storage:cache_storage_proto", 1375 "//content/browser/cache_storage:cache_storage_proto",
1374 "//content/browser/notifications:notification_proto", 1376 "//content/browser/notifications:notification_proto",
1375 "//content/browser/service_worker:service_worker_proto", 1377 "//content/browser/service_worker:service_worker_proto",
1376 "//content/browser/speech/proto", 1378 "//content/browser/speech/proto",
1377 "//content/child:for_content_tests", 1379 "//content/child:for_content_tests",
1378 "//content/gpu", 1380 "//content/gpu",
1379 "//content/public/browser", 1381 "//content/public/browser",
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
1706 if (is_android) { 1708 if (is_android) {
1707 deps += [ "//testing/android/native_test:native_test_native_code" ] 1709 deps += [ "//testing/android/native_test:native_test_native_code" ]
1708 } 1710 }
1709 } 1711 }
1710 1712
1711 group("fuzzers") { 1713 group("fuzzers") {
1712 deps = [ 1714 deps = [
1713 "//content/test/fuzzer", 1715 "//content/test/fuzzer",
1714 ] 1716 ]
1715 } 1717 }
OLDNEW
« no previous file with comments | « content/browser/storage_partition_impl.cc ('k') | third_party/WebKit/LayoutTests/http/tests/payments/payment-app-manager.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698