| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 source_set("metrics") { | 5 source_set("metrics") { |
| 6 configs += [ "//build/config/compiler:enable_arc" ] | 6 configs += [ "//build/config/compiler:enable_arc" ] |
| 7 sources = [ | 7 sources = [ |
| 8 "field_trial_synchronizer.cc", | 8 "field_trial_synchronizer.cc", |
| 9 "field_trial_synchronizer.h", | 9 "field_trial_synchronizer.h", |
| 10 "ios_chrome_metrics_service_accessor.cc", | 10 "ios_chrome_metrics_service_accessor.cc", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 "//components/translate/core/browser", | 41 "//components/translate/core/browser", |
| 42 "//components/variations", | 42 "//components/variations", |
| 43 "//components/variations/service", | 43 "//components/variations/service", |
| 44 "//components/version_info", | 44 "//components/version_info", |
| 45 "//ios/chrome/browser", | 45 "//ios/chrome/browser", |
| 46 "//ios/chrome/browser/browser_state", | 46 "//ios/chrome/browser/browser_state", |
| 47 "//ios/chrome/browser/crash_report", | 47 "//ios/chrome/browser/crash_report", |
| 48 "//ios/chrome/browser/google", | 48 "//ios/chrome/browser/google", |
| 49 "//ios/chrome/browser/signin", | 49 "//ios/chrome/browser/signin", |
| 50 "//ios/chrome/browser/sync", | 50 "//ios/chrome/browser/sync", |
| 51 "//ios/chrome/browser/ui:browser_list", | 51 "//ios/chrome/browser/tabs", |
| 52 "//ios/chrome/browser/variations", | 52 "//ios/chrome/browser/variations", |
| 53 "//ios/chrome/browser/variations:ios_chrome_ui_string_overrider_factory", | 53 "//ios/chrome/browser/variations:ios_chrome_ui_string_overrider_factory", |
| 54 "//ios/chrome/common", | 54 "//ios/chrome/common", |
| 55 "//ios/public/provider/chrome/browser", | 55 "//ios/public/provider/chrome/browser", |
| 56 "//ios/web", | 56 "//ios/web", |
| 57 ] | 57 ] |
| 58 } | 58 } |
| 59 | 59 |
| 60 source_set("unit_tests") { | 60 source_set("unit_tests") { |
| 61 configs += [ "//build/config/compiler:enable_arc" ] | 61 configs += [ "//build/config/compiler:enable_arc" ] |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 "tab_usage_recorder_delegate.h", | 94 "tab_usage_recorder_delegate.h", |
| 95 ] | 95 ] |
| 96 deps = [ | 96 deps = [ |
| 97 ":metrics", | 97 ":metrics", |
| 98 "//base", | 98 "//base", |
| 99 "//components/google/core/browser", | 99 "//components/google/core/browser", |
| 100 "//ios/chrome/browser", | 100 "//ios/chrome/browser", |
| 101 "//ios/chrome/browser/browser_state", | 101 "//ios/chrome/browser/browser_state", |
| 102 "//ios/chrome/browser/tabs", | 102 "//ios/chrome/browser/tabs", |
| 103 "//ios/chrome/browser/ui", | 103 "//ios/chrome/browser/ui", |
| 104 "//ios/chrome/browser/ui:browser_list", | |
| 105 "//ios/web", | 104 "//ios/web", |
| 106 "//ui/base", | 105 "//ui/base", |
| 107 "//url", | 106 "//url", |
| 108 ] | 107 ] |
| 109 libs = [ "UIKit.framework" ] | 108 libs = [ "UIKit.framework" ] |
| 110 } | 109 } |
| 111 | 110 |
| 112 source_set("unit_tests_internal") { | 111 source_set("unit_tests_internal") { |
| 113 testonly = true | 112 testonly = true |
| 114 sources = [ | 113 sources = [ |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 "//ios/chrome/browser/ui/tools_menu", | 148 "//ios/chrome/browser/ui/tools_menu", |
| 150 "//ios/chrome/test/app:test_support", | 149 "//ios/chrome/test/app:test_support", |
| 151 "//ios/chrome/test/earl_grey:test_support", | 150 "//ios/chrome/test/earl_grey:test_support", |
| 152 "//ios/testing:ios_test_support", | 151 "//ios/testing:ios_test_support", |
| 153 "//ios/third_party/earl_grey", | 152 "//ios/third_party/earl_grey", |
| 154 "//ios/web:test_support", | 153 "//ios/web:test_support", |
| 155 "//ui/base", | 154 "//ui/base", |
| 156 ] | 155 ] |
| 157 libs = [ "XCTest.framework" ] | 156 libs = [ "XCTest.framework" ] |
| 158 } | 157 } |
| OLD | NEW |