| 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 3470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3481 "//content/public/common", | 3481 "//content/public/common", |
| 3482 "//content/test:test_support", | 3482 "//content/test:test_support", |
| 3483 "//net:test_support", | 3483 "//net:test_support", |
| 3484 "//skia", | 3484 "//skia", |
| 3485 "//testing/gtest", | 3485 "//testing/gtest", |
| 3486 "//ui/base", | 3486 "//ui/base", |
| 3487 "//ui/gfx:test_support", | 3487 "//ui/gfx:test_support", |
| 3488 "//ui/shell_dialogs", | 3488 "//ui/shell_dialogs", |
| 3489 ] | 3489 ] |
| 3490 | 3490 |
| 3491 if (toolkit_views && (!is_mac || mac_views_browser)) { | 3491 if (toolkit_views) { |
| 3492 sources += [ | 3492 sources += [ |
| 3493 "views/find_bar_host_unittest_util_views.cc", | |
| 3494 "views/payments/test_chrome_payment_request_delegate.cc", | 3493 "views/payments/test_chrome_payment_request_delegate.cc", |
| 3495 "views/payments/test_chrome_payment_request_delegate.h", | 3494 "views/payments/test_chrome_payment_request_delegate.h", |
| 3496 "views/toolbar/browser_action_test_util_views.cc", | |
| 3497 ] | 3495 ] |
| 3498 if (!is_mac) { | 3496 if (!is_mac || mac_views_browser) { |
| 3499 deps += [ "//ui/aura" ] | 3497 sources += [ |
| 3498 "views/find_bar_host_unittest_util_views.cc", |
| 3499 "views/toolbar/browser_action_test_util_views.cc", |
| 3500 ] |
| 3501 if (!is_mac) { |
| 3502 deps += [ "//ui/aura" ] |
| 3503 } |
| 3504 } else { |
| 3505 sources += [ |
| 3506 "cocoa/extensions/browser_action_test_util_mac.mm", |
| 3507 "cocoa/find_bar/find_bar_host_unittest_util_cocoa.mm", |
| 3508 ] |
| 3500 } | 3509 } |
| 3501 } else { | |
| 3502 sources += [ | |
| 3503 "cocoa/extensions/browser_action_test_util_mac.mm", | |
| 3504 "cocoa/find_bar/find_bar_host_unittest_util_cocoa.mm", | |
| 3505 ] | |
| 3506 } | 3510 } |
| 3507 | 3511 |
| 3508 if (!is_android) { | 3512 if (!is_android) { |
| 3509 sources += [ | 3513 sources += [ |
| 3510 "exclusive_access/fullscreen_controller_state_test.cc", | 3514 "exclusive_access/fullscreen_controller_state_test.cc", |
| 3511 "exclusive_access/fullscreen_controller_state_test.h", | 3515 "exclusive_access/fullscreen_controller_state_test.h", |
| 3512 "exclusive_access/fullscreen_controller_state_tests.h", | 3516 "exclusive_access/fullscreen_controller_state_tests.h", |
| 3513 "exclusive_access/fullscreen_controller_test.cc", | 3517 "exclusive_access/fullscreen_controller_test.cc", |
| 3514 "exclusive_access/fullscreen_controller_test.h", | 3518 "exclusive_access/fullscreen_controller_test.h", |
| 3515 "passwords/manage_passwords_ui_controller_mock.cc", | 3519 "passwords/manage_passwords_ui_controller_mock.cc", |
| 3516 "passwords/manage_passwords_ui_controller_mock.h", | 3520 "passwords/manage_passwords_ui_controller_mock.h", |
| 3517 "passwords/password_dialog_controller_mock.cc", | 3521 "passwords/password_dialog_controller_mock.cc", |
| 3518 "passwords/password_dialog_controller_mock.h", | 3522 "passwords/password_dialog_controller_mock.h", |
| 3519 "passwords/passwords_model_delegate_mock.cc", | 3523 "passwords/passwords_model_delegate_mock.cc", |
| 3520 "passwords/passwords_model_delegate_mock.h", | 3524 "passwords/passwords_model_delegate_mock.h", |
| 3521 "test/test_confirm_bubble_model.cc", | 3525 "test/test_confirm_bubble_model.cc", |
| 3522 "test/test_confirm_bubble_model.h", | 3526 "test/test_confirm_bubble_model.h", |
| 3523 ] | 3527 ] |
| 3524 deps += [ "//chrome/test:test_support_ui" ] | 3528 deps += [ "//chrome/test:test_support_ui" ] |
| 3525 } | 3529 } |
| 3526 | 3530 |
| 3527 if (enable_extensions) { | 3531 if (enable_extensions) { |
| 3528 deps += [ "//extensions/browser" ] | 3532 deps += [ "//extensions/browser" ] |
| 3529 } | 3533 } |
| 3530 } | 3534 } |
| OLD | NEW |