| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 "autofill/autofill_dialog_models.h", | 47 "autofill/autofill_dialog_models.h", |
| 48 "autofill/autofill_popup_controller.h", | 48 "autofill/autofill_popup_controller.h", |
| 49 "autofill/autofill_popup_controller_impl.cc", | 49 "autofill/autofill_popup_controller_impl.cc", |
| 50 "autofill/autofill_popup_controller_impl.h", | 50 "autofill/autofill_popup_controller_impl.h", |
| 51 "autofill/autofill_popup_layout_model.cc", | 51 "autofill/autofill_popup_layout_model.cc", |
| 52 "autofill/autofill_popup_layout_model.h", | 52 "autofill/autofill_popup_layout_model.h", |
| 53 "autofill/autofill_popup_view.h", | 53 "autofill/autofill_popup_view.h", |
| 54 "autofill/autofill_popup_view_delegate.h", | 54 "autofill/autofill_popup_view_delegate.h", |
| 55 "autofill/chrome_autofill_client.cc", | 55 "autofill/chrome_autofill_client.cc", |
| 56 "autofill/chrome_autofill_client.h", | 56 "autofill/chrome_autofill_client.h", |
| 57 "autofill/country_combobox_model.cc", | |
| 58 "autofill/country_combobox_model.h", | |
| 59 "autofill/create_card_unmask_prompt_view.h", | 57 "autofill/create_card_unmask_prompt_view.h", |
| 60 "autofill/credit_card_scanner_controller.cc", | 58 "autofill/credit_card_scanner_controller.cc", |
| 61 "autofill/credit_card_scanner_controller.h", | 59 "autofill/credit_card_scanner_controller.h", |
| 62 "autofill/credit_card_scanner_view.cc", | 60 "autofill/credit_card_scanner_view.cc", |
| 63 "autofill/credit_card_scanner_view.h", | 61 "autofill/credit_card_scanner_view.h", |
| 64 "autofill/credit_card_scanner_view_delegate.h", | 62 "autofill/credit_card_scanner_view_delegate.h", |
| 65 "autofill/password_generation_popup_controller.h", | 63 "autofill/password_generation_popup_controller.h", |
| 66 "autofill/password_generation_popup_controller_impl.cc", | 64 "autofill/password_generation_popup_controller_impl.cc", |
| 67 "autofill/password_generation_popup_controller_impl.h", | 65 "autofill/password_generation_popup_controller_impl.h", |
| 68 "autofill/password_generation_popup_observer.h", | 66 "autofill/password_generation_popup_observer.h", |
| (...skipping 3452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3521 "test/test_confirm_bubble_model.cc", | 3519 "test/test_confirm_bubble_model.cc", |
| 3522 "test/test_confirm_bubble_model.h", | 3520 "test/test_confirm_bubble_model.h", |
| 3523 ] | 3521 ] |
| 3524 deps += [ "//chrome/test:test_support_ui" ] | 3522 deps += [ "//chrome/test:test_support_ui" ] |
| 3525 } | 3523 } |
| 3526 | 3524 |
| 3527 if (enable_extensions) { | 3525 if (enable_extensions) { |
| 3528 deps += [ "//extensions/browser" ] | 3526 deps += [ "//extensions/browser" ] |
| 3529 } | 3527 } |
| 3530 } | 3528 } |
| OLD | NEW |