| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/split_static_library.gni") | 8 import("//build/split_static_library.gni") |
| 9 import("//chrome/common/features.gni") | 9 import("//chrome/common/features.gni") |
| 10 | 10 |
| (...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 667 "toolbar/test_toolbar_action_view_controller.cc", | 667 "toolbar/test_toolbar_action_view_controller.cc", |
| 668 "toolbar/test_toolbar_action_view_controller.h", | 668 "toolbar/test_toolbar_action_view_controller.h", |
| 669 ] | 669 ] |
| 670 | 670 |
| 671 if (!is_ios && !is_android) { | 671 if (!is_ios && !is_android) { |
| 672 sources += [ | 672 sources += [ |
| 673 "passwords/manage_passwords_ui_controller_mock.cc", | 673 "passwords/manage_passwords_ui_controller_mock.cc", |
| 674 "passwords/manage_passwords_ui_controller_mock.h", | 674 "passwords/manage_passwords_ui_controller_mock.h", |
| 675 "passwords/password_dialog_controller_mock.cc", | 675 "passwords/password_dialog_controller_mock.cc", |
| 676 "passwords/password_dialog_controller_mock.h", | 676 "passwords/password_dialog_controller_mock.h", |
| 677 "website_settings/mock_permission_bubble_request.cc", | |
| 678 "website_settings/mock_permission_bubble_request.h", | |
| 679 ] | 677 ] |
| 680 } | 678 } |
| 681 | 679 |
| 682 if (toolkit_views && (!is_mac || mac_views_browser)) { | 680 if (toolkit_views && (!is_mac || mac_views_browser)) { |
| 683 sources += [ | 681 sources += [ |
| 684 "views/find_bar_host_unittest_util_views.cc", | 682 "views/find_bar_host_unittest_util_views.cc", |
| 685 "views/toolbar/browser_action_test_util_views.cc", | 683 "views/toolbar/browser_action_test_util_views.cc", |
| 686 ] | 684 ] |
| 687 } else { | 685 } else { |
| 688 sources += [ | 686 sources += [ |
| (...skipping 22 matching lines...) Expand all Loading... |
| 711 "//chrome/browser", | 709 "//chrome/browser", |
| 712 "//content/public/browser", | 710 "//content/public/browser", |
| 713 "//content/public/common", | 711 "//content/public/common", |
| 714 "//content/test:test_support", | 712 "//content/test:test_support", |
| 715 "//net:test_support", | 713 "//net:test_support", |
| 716 "//skia", | 714 "//skia", |
| 717 "//testing/gtest", | 715 "//testing/gtest", |
| 718 "//ui/base", | 716 "//ui/base", |
| 719 ] | 717 ] |
| 720 } | 718 } |
| OLD | NEW |