| 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 1266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1277 ] | 1277 ] |
| 1278 if (enable_rlz) { | 1278 if (enable_rlz) { |
| 1279 deps += [ "//chrome/browser:rlz" ] | 1279 deps += [ "//chrome/browser:rlz" ] |
| 1280 } | 1280 } |
| 1281 } | 1281 } |
| 1282 if (use_cups) { | 1282 if (use_cups) { |
| 1283 configs += [ "//printing:cups" ] | 1283 configs += [ "//printing:cups" ] |
| 1284 } | 1284 } |
| 1285 if (use_ash) { | 1285 if (use_ash) { |
| 1286 sources += [ | 1286 sources += [ |
| 1287 "ash/app_launcher_id.cc", |
| 1288 "ash/app_launcher_id.h", |
| 1287 "ash/app_list/app_list_controller_ash.cc", | 1289 "ash/app_list/app_list_controller_ash.cc", |
| 1288 "ash/app_list/app_list_controller_ash.h", | 1290 "ash/app_list/app_list_controller_ash.h", |
| 1289 "ash/app_list/app_list_presenter_delegate_mus.cc", | 1291 "ash/app_list/app_list_presenter_delegate_mus.cc", |
| 1290 "ash/app_list/app_list_presenter_delegate_mus.h", | 1292 "ash/app_list/app_list_presenter_delegate_mus.h", |
| 1291 "ash/app_list/app_list_presenter_service.cc", | 1293 "ash/app_list/app_list_presenter_service.cc", |
| 1292 "ash/app_list/app_list_presenter_service.h", | 1294 "ash/app_list/app_list_presenter_service.h", |
| 1293 "ash/app_list/app_list_service_ash.cc", | 1295 "ash/app_list/app_list_service_ash.cc", |
| 1294 "ash/app_list/app_list_service_ash.h", | 1296 "ash/app_list/app_list_service_ash.h", |
| 1295 "ash/app_list/app_sync_ui_state_watcher.cc", | 1297 "ash/app_list/app_sync_ui_state_watcher.cc", |
| 1296 "ash/app_list/app_sync_ui_state_watcher.h", | 1298 "ash/app_list/app_sync_ui_state_watcher.h", |
| (...skipping 2220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3517 "test/test_confirm_bubble_model.cc", | 3519 "test/test_confirm_bubble_model.cc", |
| 3518 "test/test_confirm_bubble_model.h", | 3520 "test/test_confirm_bubble_model.h", |
| 3519 ] | 3521 ] |
| 3520 deps += [ "//chrome/test:test_support_ui" ] | 3522 deps += [ "//chrome/test:test_support_ui" ] |
| 3521 } | 3523 } |
| 3522 | 3524 |
| 3523 if (enable_extensions) { | 3525 if (enable_extensions) { |
| 3524 deps += [ "//extensions/browser" ] | 3526 deps += [ "//extensions/browser" ] |
| 3525 } | 3527 } |
| 3526 } | 3528 } |
| OLD | NEW |