| 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 3186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3197 deps += [ "//device/udev_linux" ] | 3197 deps += [ "//device/udev_linux" ] |
| 3198 } | 3198 } |
| 3199 | 3199 |
| 3200 if (enable_app_list) { | 3200 if (enable_app_list) { |
| 3201 sources += [ | 3201 sources += [ |
| 3202 "app_list/app_context_menu.cc", | 3202 "app_list/app_context_menu.cc", |
| 3203 "app_list/app_context_menu.h", | 3203 "app_list/app_context_menu.h", |
| 3204 "app_list/app_context_menu_delegate.h", | 3204 "app_list/app_context_menu_delegate.h", |
| 3205 "app_list/app_list_controller_delegate.cc", | 3205 "app_list/app_list_controller_delegate.cc", |
| 3206 "app_list/app_list_controller_delegate.h", | 3206 "app_list/app_list_controller_delegate.h", |
| 3207 "app_list/app_list_controller_delegate_impl.cc", | |
| 3208 "app_list/app_list_controller_delegate_impl.h", | |
| 3209 "app_list/app_list_model_builder.cc", | 3207 "app_list/app_list_model_builder.cc", |
| 3210 "app_list/app_list_model_builder.h", | 3208 "app_list/app_list_model_builder.h", |
| 3211 "app_list/app_list_service.cc", | 3209 "app_list/app_list_service.cc", |
| 3212 "app_list/app_list_service.h", | 3210 "app_list/app_list_service.h", |
| 3213 "app_list/app_list_service_impl.cc", | 3211 "app_list/app_list_service_impl.cc", |
| 3214 "app_list/app_list_service_impl.h", | 3212 "app_list/app_list_service_impl.h", |
| 3215 "app_list/app_list_syncable_service.cc", | 3213 "app_list/app_list_syncable_service.cc", |
| 3216 "app_list/app_list_syncable_service.h", | 3214 "app_list/app_list_syncable_service.h", |
| 3217 "app_list/app_list_syncable_service_factory.cc", | 3215 "app_list/app_list_syncable_service_factory.cc", |
| 3218 "app_list/app_list_syncable_service_factory.h", | 3216 "app_list/app_list_syncable_service_factory.h", |
| (...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3552 "test/test_confirm_bubble_model.cc", | 3550 "test/test_confirm_bubble_model.cc", |
| 3553 "test/test_confirm_bubble_model.h", | 3551 "test/test_confirm_bubble_model.h", |
| 3554 ] | 3552 ] |
| 3555 deps += [ "//chrome/test:test_support_ui" ] | 3553 deps += [ "//chrome/test:test_support_ui" ] |
| 3556 } | 3554 } |
| 3557 | 3555 |
| 3558 if (enable_extensions) { | 3556 if (enable_extensions) { |
| 3559 deps += [ "//extensions/browser" ] | 3557 deps += [ "//extensions/browser" ] |
| 3560 } | 3558 } |
| 3561 } | 3559 } |
| OLD | NEW |