| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//ios/web/js_compile.gni") | 6 import("//ios/web/js_compile.gni") |
| 7 | 7 |
| 8 declare_args() { | 8 declare_args() { |
| 9 google_test_gaia_client_id = "" | 9 google_test_gaia_client_id = "" |
| 10 google_test_gaia_client_secret = "" | 10 google_test_gaia_client_secret = "" |
| (...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 682 sources = [ | 682 sources = [ |
| 683 "geolocation/location_manager+Testing.h", | 683 "geolocation/location_manager+Testing.h", |
| 684 "geolocation/test_location_manager.h", | 684 "geolocation/test_location_manager.h", |
| 685 "geolocation/test_location_manager.mm", | 685 "geolocation/test_location_manager.mm", |
| 686 "net/mock_image_fetcher.h", | 686 "net/mock_image_fetcher.h", |
| 687 "net/mock_image_fetcher.mm", | 687 "net/mock_image_fetcher.mm", |
| 688 "signin/fake_oauth2_token_service_builder.cc", | 688 "signin/fake_oauth2_token_service_builder.cc", |
| 689 "signin/fake_oauth2_token_service_builder.h", | 689 "signin/fake_oauth2_token_service_builder.h", |
| 690 "signin/fake_signin_manager_builder.cc", | 690 "signin/fake_signin_manager_builder.cc", |
| 691 "signin/fake_signin_manager_builder.h", | 691 "signin/fake_signin_manager_builder.h", |
| 692 "sync/fake_sync_service_factory.cc", |
| 693 "sync/fake_sync_service_factory.h", |
| 692 "sync/ios_chrome_profile_sync_test_util.cc", | 694 "sync/ios_chrome_profile_sync_test_util.cc", |
| 693 "sync/ios_chrome_profile_sync_test_util.h", | 695 "sync/ios_chrome_profile_sync_test_util.h", |
| 694 "sync/sync_setup_service_mock.cc", | 696 "sync/sync_setup_service_mock.cc", |
| 695 "sync/sync_setup_service_mock.h", | 697 "sync/sync_setup_service_mock.h", |
| 696 ] | 698 ] |
| 697 | 699 |
| 698 deps = [ | 700 deps = [ |
| 699 "//base", | 701 "//base", |
| 700 "//components/browser_sync/browser", | 702 "//components/browser_sync/browser", |
| 703 "//components/keyed_service/core", |
| 704 "//components/keyed_service/ios", |
| 701 "//components/signin/core/browser", | 705 "//components/signin/core/browser", |
| 702 "//components/signin/ios/browser", | 706 "//components/signin/ios/browser", |
| 703 "//components/sync_driver", | 707 "//components/sync_driver", |
| 708 "//components/sync_driver:test_support", |
| 704 "//ios/chrome/browser", | 709 "//ios/chrome/browser", |
| 705 "//ios/chrome/common", | 710 "//ios/chrome/common", |
| 706 "//ios/chrome/test", | 711 "//ios/chrome/test", |
| 707 "//ios/public/provider/chrome/browser", | 712 "//ios/public/provider/chrome/browser", |
| 713 "//ios/public/provider/chrome/browser:test_support", |
| 708 "//ios/web", | 714 "//ios/web", |
| 715 "//sync", |
| 709 "//testing/gmock", | 716 "//testing/gmock", |
| 710 "//testing/gtest", | 717 "//testing/gtest", |
| 711 "//ui/base", | 718 "//ui/base", |
| 712 "//url", | 719 "//url", |
| 713 ] | 720 ] |
| 714 } | 721 } |
| OLD | NEW |