| 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 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 523 "//components/query_parser", | 523 "//components/query_parser", |
| 524 "//components/rappor", | 524 "//components/rappor", |
| 525 "//components/renderer_context_menu", | 525 "//components/renderer_context_menu", |
| 526 "//components/resources", | 526 "//components/resources", |
| 527 "//components/safe_browsing_db:safe_browsing_prefs", | 527 "//components/safe_browsing_db:safe_browsing_prefs", |
| 528 "//components/safe_json", | 528 "//components/safe_json", |
| 529 "//components/search", | 529 "//components/search", |
| 530 "//components/search_engines", | 530 "//components/search_engines", |
| 531 "//components/security_interstitials/core", | 531 "//components/security_interstitials/core", |
| 532 "//components/security_state", | 532 "//components/security_state", |
| 533 "//components/session_manager/core", | |
| 534 "//components/sessions", | 533 "//components/sessions", |
| 535 "//components/signin/core/account_id", | 534 "//components/signin/core/account_id", |
| 536 "//components/signin/core/browser", | 535 "//components/signin/core/browser", |
| 537 "//components/spellcheck/browser", | 536 "//components/spellcheck/browser", |
| 538 "//components/ssl_errors", | 537 "//components/ssl_errors", |
| 539 "//components/startup_metric_utils/browser:lib", | 538 "//components/startup_metric_utils/browser:lib", |
| 540 "//components/strings", | 539 "//components/strings", |
| 541 "//components/subresource_filter/content/browser", | 540 "//components/subresource_filter/content/browser", |
| 542 "//components/suggestions/proto", | 541 "//components/suggestions/proto", |
| 543 "//components/supervised_user_error_page", | 542 "//components/supervised_user_error_page", |
| (...skipping 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1392 "views/ash/tab_scrubber.h", | 1391 "views/ash/tab_scrubber.h", |
| 1393 "views/touch_uma/touch_uma_ash.cc", | 1392 "views/touch_uma/touch_uma_ash.cc", |
| 1394 "window_sizer/window_sizer_ash.cc", | 1393 "window_sizer/window_sizer_ash.cc", |
| 1395 ] | 1394 ] |
| 1396 deps += [ | 1395 deps += [ |
| 1397 "//ash", | 1396 "//ash", |
| 1398 "//ash:ash_with_content", | 1397 "//ash:ash_with_content", |
| 1399 "//ash/common/strings", | 1398 "//ash/common/strings", |
| 1400 "//ash/public/cpp", | 1399 "//ash/public/cpp", |
| 1401 "//ash/public/interfaces", | 1400 "//ash/public/interfaces", |
| 1401 "//components/session_manager/core", |
| 1402 "//components/user_manager", | 1402 "//components/user_manager", |
| 1403 "//services/ui/public/cpp", | 1403 "//services/ui/public/cpp", |
| 1404 "//ui/app_list/presenter", | 1404 "//ui/app_list/presenter", |
| 1405 "//ui/app_list/presenter:mojom", | 1405 "//ui/app_list/presenter:mojom", |
| 1406 "//ui/keyboard:mojom", | 1406 "//ui/keyboard:mojom", |
| 1407 ] | 1407 ] |
| 1408 } else { # Not ash. | 1408 } else { # Not ash. |
| 1409 sources += [ "views/touch_uma/touch_uma.cc" ] | 1409 sources += [ "views/touch_uma/touch_uma.cc" ] |
| 1410 } | 1410 } |
| 1411 if (toolkit_views) { | 1411 if (toolkit_views) { |
| (...skipping 2016 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3428 "test/test_confirm_bubble_model.cc", | 3428 "test/test_confirm_bubble_model.cc", |
| 3429 "test/test_confirm_bubble_model.h", | 3429 "test/test_confirm_bubble_model.h", |
| 3430 ] | 3430 ] |
| 3431 deps += [ "//chrome/test:test_support_ui" ] | 3431 deps += [ "//chrome/test:test_support_ui" ] |
| 3432 } | 3432 } |
| 3433 | 3433 |
| 3434 if (enable_extensions) { | 3434 if (enable_extensions) { |
| 3435 deps += [ "//extensions/browser" ] | 3435 deps += [ "//extensions/browser" ] |
| 3436 } | 3436 } |
| 3437 } | 3437 } |
| OLD | NEW |