| 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 1543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1554 "views/website_settings/permission_prompt_impl.h", | 1554 "views/website_settings/permission_prompt_impl.h", |
| 1555 "views/website_settings/permission_selector_row.cc", | 1555 "views/website_settings/permission_selector_row.cc", |
| 1556 "views/website_settings/permission_selector_row.h", | 1556 "views/website_settings/permission_selector_row.h", |
| 1557 "views/website_settings/permission_selector_row_observer.h", | 1557 "views/website_settings/permission_selector_row_observer.h", |
| 1558 "views/website_settings/website_settings_popup_view.cc", | 1558 "views/website_settings/website_settings_popup_view.cc", |
| 1559 "views/website_settings/website_settings_popup_view.h", | 1559 "views/website_settings/website_settings_popup_view.h", |
| 1560 ] | 1560 ] |
| 1561 deps += [ | 1561 deps += [ |
| 1562 "//chrome/browser/ui/views", | 1562 "//chrome/browser/ui/views", |
| 1563 "//components/constrained_window", | 1563 "//components/constrained_window", |
| 1564 "//components/payments:payment_request_impl", | 1564 "//components/payments/content:payment_request_impl", |
| 1565 "//components/payments:payment_validation", | 1565 "//components/payments/content:payment_validation", |
| 1566 "//components/payments/core", |
| 1566 "//services/ui/public/cpp/input_devices", | 1567 "//services/ui/public/cpp/input_devices", |
| 1567 ] | 1568 ] |
| 1568 allow_circular_includes_from += [ "//chrome/browser/ui/views" ] | 1569 allow_circular_includes_from += [ "//chrome/browser/ui/views" ] |
| 1569 | 1570 |
| 1570 if (enable_extensions) { | 1571 if (enable_extensions) { |
| 1571 deps += [ "//extensions/components/native_app_window" ] | 1572 deps += [ "//extensions/components/native_app_window" ] |
| 1572 } | 1573 } |
| 1573 | 1574 |
| 1574 if (is_chromeos) { | 1575 if (is_chromeos) { |
| 1575 sources += [ | 1576 sources += [ |
| (...skipping 1947 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3523 "test/test_confirm_bubble_model.cc", | 3524 "test/test_confirm_bubble_model.cc", |
| 3524 "test/test_confirm_bubble_model.h", | 3525 "test/test_confirm_bubble_model.h", |
| 3525 ] | 3526 ] |
| 3526 deps += [ "//chrome/test:test_support_ui" ] | 3527 deps += [ "//chrome/test:test_support_ui" ] |
| 3527 } | 3528 } |
| 3528 | 3529 |
| 3529 if (enable_extensions) { | 3530 if (enable_extensions) { |
| 3530 deps += [ "//extensions/browser" ] | 3531 deps += [ "//extensions/browser" ] |
| 3531 } | 3532 } |
| 3532 } | 3533 } |
| OLD | NEW |