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