| 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 2102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2113 sources += [ | 2113 sources += [ |
| 2114 "views/frame/desktop_browser_frame_aura.cc", | 2114 "views/frame/desktop_browser_frame_aura.cc", |
| 2115 "views/frame/desktop_browser_frame_aura.h", | 2115 "views/frame/desktop_browser_frame_aura.h", |
| 2116 "views/message_center/message_center_frame_view.cc", | 2116 "views/message_center/message_center_frame_view.cc", |
| 2117 "views/message_center/message_center_frame_view.h", | 2117 "views/message_center/message_center_frame_view.h", |
| 2118 "views/message_center/web_notification_tray.cc", | 2118 "views/message_center/web_notification_tray.cc", |
| 2119 "views/message_center/web_notification_tray.h", | 2119 "views/message_center/web_notification_tray.h", |
| 2120 ] | 2120 ] |
| 2121 } | 2121 } |
| 2122 } | 2122 } |
| 2123 if (ui_compositor_image_transport) { | |
| 2124 deps += [ "//ui/gl" ] | |
| 2125 } | |
| 2126 if (use_nss_certs) { | 2123 if (use_nss_certs) { |
| 2127 sources += [ | 2124 sources += [ |
| 2128 "crypto_module_delegate_nss.cc", | 2125 "crypto_module_delegate_nss.cc", |
| 2129 "crypto_module_delegate_nss.h", | 2126 "crypto_module_delegate_nss.h", |
| 2130 "crypto_module_password_dialog_nss.cc", | 2127 "crypto_module_password_dialog_nss.cc", |
| 2131 "crypto_module_password_dialog_nss.h", | 2128 "crypto_module_password_dialog_nss.h", |
| 2132 "webui/options/certificate_manager_handler.cc", | 2129 "webui/options/certificate_manager_handler.cc", |
| 2133 "webui/options/certificate_manager_handler.h", | 2130 "webui/options/certificate_manager_handler.h", |
| 2134 "webui/settings/certificates_handler.cc", | 2131 "webui/settings/certificates_handler.cc", |
| 2135 "webui/settings/certificates_handler.h", | 2132 "webui/settings/certificates_handler.h", |
| (...skipping 1397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3533 "test/test_confirm_bubble_model.cc", | 3530 "test/test_confirm_bubble_model.cc", |
| 3534 "test/test_confirm_bubble_model.h", | 3531 "test/test_confirm_bubble_model.h", |
| 3535 ] | 3532 ] |
| 3536 deps += [ "//chrome/test:test_support_ui" ] | 3533 deps += [ "//chrome/test:test_support_ui" ] |
| 3537 } | 3534 } |
| 3538 | 3535 |
| 3539 if (enable_extensions) { | 3536 if (enable_extensions) { |
| 3540 deps += [ "//extensions/browser" ] | 3537 deps += [ "//extensions/browser" ] |
| 3541 } | 3538 } |
| 3542 } | 3539 } |
| OLD | NEW |