| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |