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

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

Issue 2631133003: [Payments] Introduce basic interactive browsertests for Payment Request (Closed)
Patch Set: ObserverForTest Created 3 years, 11 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/chromecast_build.gni") 5 import("//build/config/chromecast_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 3447 matching lines...) Expand 10 before | Expand all | Expand 10 after
3458 "//skia", 3458 "//skia",
3459 "//testing/gtest", 3459 "//testing/gtest",
3460 "//ui/base", 3460 "//ui/base",
3461 "//ui/gfx:test_support", 3461 "//ui/gfx:test_support",
3462 "//ui/shell_dialogs", 3462 "//ui/shell_dialogs",
3463 ] 3463 ]
3464 3464
3465 if (toolkit_views && (!is_mac || mac_views_browser)) { 3465 if (toolkit_views && (!is_mac || mac_views_browser)) {
3466 sources += [ 3466 sources += [
3467 "views/find_bar_host_unittest_util_views.cc", 3467 "views/find_bar_host_unittest_util_views.cc",
3468 "views/payments/test_chrome_payment_request_delegate.cc",
3469 "views/payments/test_chrome_payment_request_delegate.h",
3468 "views/toolbar/browser_action_test_util_views.cc", 3470 "views/toolbar/browser_action_test_util_views.cc",
3469 ] 3471 ]
3470 if (!is_mac) { 3472 if (!is_mac) {
3471 deps += [ "//ui/aura" ] 3473 deps += [ "//ui/aura" ]
3472 } 3474 }
3473 } else { 3475 } else {
3474 sources += [ 3476 sources += [
3475 "cocoa/extensions/browser_action_test_util_mac.mm", 3477 "cocoa/extensions/browser_action_test_util_mac.mm",
3476 "cocoa/find_bar/find_bar_host_unittest_util_cocoa.mm", 3478 "cocoa/find_bar/find_bar_host_unittest_util_cocoa.mm",
3477 ] 3479 ]
(...skipping 15 matching lines...) Expand all
3493 "test/test_confirm_bubble_model.cc", 3495 "test/test_confirm_bubble_model.cc",
3494 "test/test_confirm_bubble_model.h", 3496 "test/test_confirm_bubble_model.h",
3495 ] 3497 ]
3496 deps += [ "//chrome/test:test_support_ui" ] 3498 deps += [ "//chrome/test:test_support_ui" ]
3497 } 3499 }
3498 3500
3499 if (enable_extensions) { 3501 if (enable_extensions) {
3500 deps += [ "//extensions/browser" ] 3502 deps += [ "//extensions/browser" ]
3501 } 3503 }
3502 } 3504 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698