Chromium Code Reviews| 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 1412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1423 "//services/ui/public/interfaces", | 1423 "//services/ui/public/interfaces", |
| 1424 "//ui/app_list/presenter", | 1424 "//ui/app_list/presenter", |
| 1425 "//ui/app_list/presenter:mojom", | 1425 "//ui/app_list/presenter:mojom", |
| 1426 "//ui/keyboard:mojom", | 1426 "//ui/keyboard:mojom", |
| 1427 ] | 1427 ] |
| 1428 } else { # Not ash. | 1428 } else { # Not ash. |
| 1429 sources += [ "views/touch_uma/touch_uma.cc" ] | 1429 sources += [ "views/touch_uma/touch_uma.cc" ] |
| 1430 } | 1430 } |
| 1431 if (toolkit_views) { | 1431 if (toolkit_views) { |
| 1432 sources += [ | 1432 sources += [ |
| 1433 "autofill/save_card_bubble_controller.h", | |
|
csashi
2017/03/31 21:48:14
Don't you need the new location for the .h file?
Jared Saul
2017/04/01 04:18:01
Not sure. I thought about putting it but I don't
| |
| 1434 "autofill/save_card_bubble_controller_impl.cc", | 1433 "autofill/save_card_bubble_controller_impl.cc", |
| 1435 "autofill/save_card_bubble_controller_impl.h", | 1434 "autofill/save_card_bubble_controller_impl.h", |
| 1436 "autofill/save_card_bubble_view.h", | 1435 "autofill/save_card_bubble_view.h", |
| 1437 "views/apps/app_info_dialog/app_info_dialog_container.cc", | 1436 "views/apps/app_info_dialog/app_info_dialog_container.cc", |
| 1438 "views/apps/app_info_dialog/app_info_dialog_container.h", | 1437 "views/apps/app_info_dialog/app_info_dialog_container.h", |
| 1439 "views/apps/app_info_dialog/app_info_dialog_views.cc", | 1438 "views/apps/app_info_dialog/app_info_dialog_views.cc", |
| 1440 "views/apps/app_info_dialog/app_info_dialog_views.h", | 1439 "views/apps/app_info_dialog/app_info_dialog_views.h", |
| 1441 "views/apps/app_info_dialog/app_info_footer_panel.cc", | 1440 "views/apps/app_info_dialog/app_info_footer_panel.cc", |
| 1442 "views/apps/app_info_dialog/app_info_footer_panel.h", | 1441 "views/apps/app_info_dialog/app_info_footer_panel.h", |
| 1443 "views/apps/app_info_dialog/app_info_header_panel.cc", | 1442 "views/apps/app_info_dialog/app_info_header_panel.cc", |
| (...skipping 2108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3552 "test/test_confirm_bubble_model.cc", | 3551 "test/test_confirm_bubble_model.cc", |
| 3553 "test/test_confirm_bubble_model.h", | 3552 "test/test_confirm_bubble_model.h", |
| 3554 ] | 3553 ] |
| 3555 deps += [ "//chrome/test:test_support_ui" ] | 3554 deps += [ "//chrome/test:test_support_ui" ] |
| 3556 } | 3555 } |
| 3557 | 3556 |
| 3558 if (enable_extensions) { | 3557 if (enable_extensions) { |
| 3559 deps += [ "//extensions/browser" ] | 3558 deps += [ "//extensions/browser" ] |
| 3560 } | 3559 } |
| 3561 } | 3560 } |
| OLD | NEW |