| 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 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 637 "cocoa/run_loop_testing.h", | 637 "cocoa/run_loop_testing.h", |
| 638 "cocoa/run_loop_testing.mm", | 638 "cocoa/run_loop_testing.mm", |
| 639 "exclusive_access/fullscreen_controller_state_test.cc", | 639 "exclusive_access/fullscreen_controller_state_test.cc", |
| 640 "exclusive_access/fullscreen_controller_state_test.h", | 640 "exclusive_access/fullscreen_controller_state_test.h", |
| 641 "exclusive_access/fullscreen_controller_state_tests.h", | 641 "exclusive_access/fullscreen_controller_state_tests.h", |
| 642 "exclusive_access/fullscreen_controller_test.cc", | 642 "exclusive_access/fullscreen_controller_test.cc", |
| 643 "exclusive_access/fullscreen_controller_test.h", | 643 "exclusive_access/fullscreen_controller_test.h", |
| 644 "find_bar/find_bar_host_unittest_util.h", | 644 "find_bar/find_bar_host_unittest_util.h", |
| 645 "login/login_handler_test_utils.cc", | 645 "login/login_handler_test_utils.cc", |
| 646 "login/login_handler_test_utils.h", | 646 "login/login_handler_test_utils.h", |
| 647 "passwords/manage_passwords_ui_controller_mock.cc", | |
| 648 "passwords/manage_passwords_ui_controller_mock.h", | |
| 649 "test/test_confirm_bubble_model.cc", | 647 "test/test_confirm_bubble_model.cc", |
| 650 "test/test_confirm_bubble_model.h", | 648 "test/test_confirm_bubble_model.h", |
| 651 "toolbar/test_toolbar_action_view_controller.cc", | 649 "toolbar/test_toolbar_action_view_controller.cc", |
| 652 "toolbar/test_toolbar_action_view_controller.h", | 650 "toolbar/test_toolbar_action_view_controller.h", |
| 653 ] | 651 ] |
| 654 | 652 |
| 655 if (!is_ios && !is_android) { | 653 if (!is_ios && !is_android) { |
| 656 sources += [ | 654 sources += [ |
| 655 "passwords/manage_passwords_ui_controller_mock.cc", |
| 656 "passwords/manage_passwords_ui_controller_mock.h", |
| 657 "passwords/password_dialog_controller_mock.cc", |
| 658 "passwords/password_dialog_controller_mock.h", |
| 657 "website_settings/mock_permission_bubble_request.cc", | 659 "website_settings/mock_permission_bubble_request.cc", |
| 658 "website_settings/mock_permission_bubble_request.h", | 660 "website_settings/mock_permission_bubble_request.h", |
| 659 ] | 661 ] |
| 660 } | 662 } |
| 661 | 663 |
| 662 if (toolkit_views && (!is_mac || mac_views_browser)) { | 664 if (toolkit_views && (!is_mac || mac_views_browser)) { |
| 663 sources += [ | 665 sources += [ |
| 664 "views/find_bar_host_unittest_util_views.cc", | 666 "views/find_bar_host_unittest_util_views.cc", |
| 665 "views/toolbar/browser_action_test_util_views.cc", | 667 "views/toolbar/browser_action_test_util_views.cc", |
| 666 ] | 668 ] |
| (...skipping 24 matching lines...) Expand all Loading... |
| 691 "//chrome/browser", | 693 "//chrome/browser", |
| 692 "//content/public/browser", | 694 "//content/public/browser", |
| 693 "//content/public/common", | 695 "//content/public/common", |
| 694 "//content/test:test_support", | 696 "//content/test:test_support", |
| 695 "//net:test_support", | 697 "//net:test_support", |
| 696 "//skia", | 698 "//skia", |
| 697 "//testing/gtest", | 699 "//testing/gtest", |
| 698 "//ui/base", | 700 "//ui/base", |
| 699 ] | 701 ] |
| 700 } | 702 } |
| OLD | NEW |