| 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("//chrome/common/features.gni") | 8 import("//chrome/common/features.gni") |
| 9 | 9 |
| 10 gypi_values = exec_script("//build/gypi_to_gn.py", | 10 gypi_values = exec_script("//build/gypi_to_gn.py", |
| (...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 "login/login_handler_test_utils.cc", | 620 "login/login_handler_test_utils.cc", |
| 621 "login/login_handler_test_utils.h", | 621 "login/login_handler_test_utils.h", |
| 622 "passwords/manage_passwords_ui_controller_mock.cc", | 622 "passwords/manage_passwords_ui_controller_mock.cc", |
| 623 "passwords/manage_passwords_ui_controller_mock.h", | 623 "passwords/manage_passwords_ui_controller_mock.h", |
| 624 "test/test_confirm_bubble_model.cc", | 624 "test/test_confirm_bubble_model.cc", |
| 625 "test/test_confirm_bubble_model.h", | 625 "test/test_confirm_bubble_model.h", |
| 626 "toolbar/test_toolbar_action_view_controller.cc", | 626 "toolbar/test_toolbar_action_view_controller.cc", |
| 627 "toolbar/test_toolbar_action_view_controller.h", | 627 "toolbar/test_toolbar_action_view_controller.h", |
| 628 ] | 628 ] |
| 629 | 629 |
| 630 if (!is_ios && !is_android) { | 630 if (!is_ios) { |
| 631 sources += [ | 631 sources += [ |
| 632 "website_settings/mock_permission_bubble_request.cc", | 632 "website_settings/mock_permission_bubble_request.cc", |
| 633 "website_settings/mock_permission_bubble_request.h", | 633 "website_settings/mock_permission_bubble_request.h", |
| 634 ] | 634 ] |
| 635 } | 635 } |
| 636 | 636 |
| 637 if (toolkit_views && (!is_mac || mac_views_browser)) { | 637 if (toolkit_views && (!is_mac || mac_views_browser)) { |
| 638 sources += [ | 638 sources += [ |
| 639 "views/find_bar_host_unittest_util_views.cc", | 639 "views/find_bar_host_unittest_util_views.cc", |
| 640 "views/toolbar/browser_action_test_util_views.cc", | 640 "views/toolbar/browser_action_test_util_views.cc", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 666 "//chrome/browser", | 666 "//chrome/browser", |
| 667 "//content/public/browser", | 667 "//content/public/browser", |
| 668 "//content/public/common", | 668 "//content/public/common", |
| 669 "//content/test:test_support", | 669 "//content/test:test_support", |
| 670 "//net:test_support", | 670 "//net:test_support", |
| 671 "//skia", | 671 "//skia", |
| 672 "//testing/gtest", | 672 "//testing/gtest", |
| 673 "//ui/base", | 673 "//ui/base", |
| 674 ] | 674 ] |
| 675 } | 675 } |
| OLD | NEW |