| 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 1262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1273 ] | 1273 ] |
| 1274 if (enable_rlz) { | 1274 if (enable_rlz) { |
| 1275 deps += [ "//chrome/browser:rlz" ] | 1275 deps += [ "//chrome/browser:rlz" ] |
| 1276 } | 1276 } |
| 1277 } | 1277 } |
| 1278 if (use_cups) { | 1278 if (use_cups) { |
| 1279 configs += [ "//printing:cups" ] | 1279 configs += [ "//printing:cups" ] |
| 1280 } | 1280 } |
| 1281 if (use_ash) { | 1281 if (use_ash) { |
| 1282 sources += [ | 1282 sources += [ |
| 1283 "ash/app_launcher_id.cc", |
| 1284 "ash/app_launcher_id.h", |
| 1283 "ash/app_list/app_list_controller_ash.cc", | 1285 "ash/app_list/app_list_controller_ash.cc", |
| 1284 "ash/app_list/app_list_controller_ash.h", | 1286 "ash/app_list/app_list_controller_ash.h", |
| 1285 "ash/app_list/app_list_presenter_delegate_mus.cc", | 1287 "ash/app_list/app_list_presenter_delegate_mus.cc", |
| 1286 "ash/app_list/app_list_presenter_delegate_mus.h", | 1288 "ash/app_list/app_list_presenter_delegate_mus.h", |
| 1287 "ash/app_list/app_list_presenter_service.cc", | 1289 "ash/app_list/app_list_presenter_service.cc", |
| 1288 "ash/app_list/app_list_presenter_service.h", | 1290 "ash/app_list/app_list_presenter_service.h", |
| 1289 "ash/app_list/app_list_service_ash.cc", | 1291 "ash/app_list/app_list_service_ash.cc", |
| 1290 "ash/app_list/app_list_service_ash.h", | 1292 "ash/app_list/app_list_service_ash.h", |
| 1291 "ash/app_list/app_sync_ui_state_watcher.cc", | 1293 "ash/app_list/app_sync_ui_state_watcher.cc", |
| 1292 "ash/app_list/app_sync_ui_state_watcher.h", | 1294 "ash/app_list/app_sync_ui_state_watcher.h", |
| (...skipping 2208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3501 "test/test_confirm_bubble_model.cc", | 3503 "test/test_confirm_bubble_model.cc", |
| 3502 "test/test_confirm_bubble_model.h", | 3504 "test/test_confirm_bubble_model.h", |
| 3503 ] | 3505 ] |
| 3504 deps += [ "//chrome/test:test_support_ui" ] | 3506 deps += [ "//chrome/test:test_support_ui" ] |
| 3505 } | 3507 } |
| 3506 | 3508 |
| 3507 if (enable_extensions) { | 3509 if (enable_extensions) { |
| 3508 deps += [ "//extensions/browser" ] | 3510 deps += [ "//extensions/browser" ] |
| 3509 } | 3511 } |
| 3510 } | 3512 } |
| OLD | NEW |