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