| 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 1409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1420 "//ui/keyboard:mojom", | 1420 "//ui/keyboard:mojom", |
| 1421 ] | 1421 ] |
| 1422 } else { # Not ash. | 1422 } else { # Not ash. |
| 1423 sources += [ | 1423 sources += [ |
| 1424 "views/touch_uma/touch_uma.cc", | 1424 "views/touch_uma/touch_uma.cc", |
| 1425 "views/touch_uma/touch_uma.h", | 1425 "views/touch_uma/touch_uma.h", |
| 1426 ] | 1426 ] |
| 1427 } | 1427 } |
| 1428 if (toolkit_views) { | 1428 if (toolkit_views) { |
| 1429 sources += [ | 1429 sources += [ |
| 1430 "autofill/save_card_bubble_controller.h", | |
| 1431 "autofill/save_card_bubble_controller_impl.cc", | 1430 "autofill/save_card_bubble_controller_impl.cc", |
| 1432 "autofill/save_card_bubble_controller_impl.h", | 1431 "autofill/save_card_bubble_controller_impl.h", |
| 1433 "autofill/save_card_bubble_view.h", | 1432 "autofill/save_card_bubble_view.h", |
| 1434 "views/apps/app_info_dialog/app_info_dialog_container.cc", | 1433 "views/apps/app_info_dialog/app_info_dialog_container.cc", |
| 1435 "views/apps/app_info_dialog/app_info_dialog_container.h", | 1434 "views/apps/app_info_dialog/app_info_dialog_container.h", |
| 1436 "views/apps/app_info_dialog/app_info_dialog_views.cc", | 1435 "views/apps/app_info_dialog/app_info_dialog_views.cc", |
| 1437 "views/apps/app_info_dialog/app_info_dialog_views.h", | 1436 "views/apps/app_info_dialog/app_info_dialog_views.h", |
| 1438 "views/apps/app_info_dialog/app_info_footer_panel.cc", | 1437 "views/apps/app_info_dialog/app_info_footer_panel.cc", |
| 1439 "views/apps/app_info_dialog/app_info_footer_panel.h", | 1438 "views/apps/app_info_dialog/app_info_footer_panel.h", |
| 1440 "views/apps/app_info_dialog/app_info_header_panel.cc", | 1439 "views/apps/app_info_dialog/app_info_header_panel.cc", |
| (...skipping 2113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3554 "test/test_confirm_bubble_model.cc", | 3553 "test/test_confirm_bubble_model.cc", |
| 3555 "test/test_confirm_bubble_model.h", | 3554 "test/test_confirm_bubble_model.h", |
| 3556 ] | 3555 ] |
| 3557 deps += [ "//chrome/test:test_support_ui" ] | 3556 deps += [ "//chrome/test:test_support_ui" ] |
| 3558 } | 3557 } |
| 3559 | 3558 |
| 3560 if (enable_extensions) { | 3559 if (enable_extensions) { |
| 3561 deps += [ "//extensions/browser" ] | 3560 deps += [ "//extensions/browser" ] |
| 3562 } | 3561 } |
| 3563 } | 3562 } |
| OLD | NEW |