| 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 1404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1415 "//ash/strings", | 1415 "//ash/strings", |
| 1416 "//components/session_manager/core", | 1416 "//components/session_manager/core", |
| 1417 "//components/user_manager", | 1417 "//components/user_manager", |
| 1418 "//services/ui/public/cpp", | 1418 "//services/ui/public/cpp", |
| 1419 "//services/ui/public/interfaces", | 1419 "//services/ui/public/interfaces", |
| 1420 "//ui/app_list/presenter", | 1420 "//ui/app_list/presenter", |
| 1421 "//ui/app_list/presenter:mojom", | 1421 "//ui/app_list/presenter:mojom", |
| 1422 "//ui/keyboard:mojom", | 1422 "//ui/keyboard:mojom", |
| 1423 ] | 1423 ] |
| 1424 } else { # Not ash. | 1424 } else { # Not ash. |
| 1425 sources += [ "views/touch_uma/touch_uma.cc" ] | 1425 sources += [ |
| 1426 "views/touch_uma/touch_uma.cc", |
| 1427 "views/touch_uma/touch_uma.h", |
| 1428 ] |
| 1426 } | 1429 } |
| 1427 if (toolkit_views) { | 1430 if (toolkit_views) { |
| 1428 sources += [ | 1431 sources += [ |
| 1429 "autofill/save_card_bubble_controller.h", | 1432 "autofill/save_card_bubble_controller.h", |
| 1430 "autofill/save_card_bubble_controller_impl.cc", | 1433 "autofill/save_card_bubble_controller_impl.cc", |
| 1431 "autofill/save_card_bubble_controller_impl.h", | 1434 "autofill/save_card_bubble_controller_impl.h", |
| 1432 "autofill/save_card_bubble_view.h", | 1435 "autofill/save_card_bubble_view.h", |
| 1433 "views/apps/app_info_dialog/app_info_dialog_container.cc", | 1436 "views/apps/app_info_dialog/app_info_dialog_container.cc", |
| 1434 "views/apps/app_info_dialog/app_info_dialog_container.h", | 1437 "views/apps/app_info_dialog/app_info_dialog_container.h", |
| 1435 "views/apps/app_info_dialog/app_info_dialog_views.cc", | 1438 "views/apps/app_info_dialog/app_info_dialog_views.cc", |
| (...skipping 2119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3555 "test/test_confirm_bubble_model.cc", | 3558 "test/test_confirm_bubble_model.cc", |
| 3556 "test/test_confirm_bubble_model.h", | 3559 "test/test_confirm_bubble_model.h", |
| 3557 ] | 3560 ] |
| 3558 deps += [ "//chrome/test:test_support_ui" ] | 3561 deps += [ "//chrome/test:test_support_ui" ] |
| 3559 } | 3562 } |
| 3560 | 3563 |
| 3561 if (enable_extensions) { | 3564 if (enable_extensions) { |
| 3562 deps += [ "//extensions/browser" ] | 3565 deps += [ "//extensions/browser" ] |
| 3563 } | 3566 } |
| 3564 } | 3567 } |
| OLD | NEW |